forked from tdwojak/Python2017
commited tasks
This commit is contained in:
parent
fa0b6aa45a
commit
2522037757
@ -13,7 +13,11 @@ jak 'set', która przechowuje elementy bez powtórzeń.)
|
|||||||
|
|
||||||
|
|
||||||
def oov(text, vocab):
|
def oov(text, vocab):
|
||||||
pass
|
testList = []
|
||||||
|
_textPlit =text.split("")
|
||||||
|
|
||||||
|
|
||||||
|
return
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,7 +7,12 @@ Jeśli podany argument jest mniejszy od 1 powinna być zwracana wartość 0.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
def sum_from_one_to_n(n):
|
def sum_from_one_to_n(n):
|
||||||
pass
|
if n < 0:
|
||||||
|
return 0
|
||||||
|
else:
|
||||||
|
for i in range(n):
|
||||||
|
x = x + i
|
||||||
|
return x
|
||||||
|
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
|
Loading…
Reference in New Issue
Block a user