1
0
forked from tdwojak/Python2017
This commit is contained in:
s45159 2017-11-29 17:17:57 +01:00
parent 0f60618960
commit 9ef7fa16a0
9 changed files with 40 additions and 9 deletions

View File

@ -13,7 +13,11 @@ jak 'set', która przechowuje elementy bez powtórzeń.)
def oov(text, vocab):
pass
text = text.split()
result = [char for char in text if char not in vocab]
result = sorted(set(result))
return result

View File

@ -7,7 +7,10 @@ Jeśli podany argument jest mniejszy od 1 powinna być zwracana wartość 0.
"""
def sum_from_one_to_n(n):
pass
if n < 1 :
return 0
else:
return sum(range(n+1))
def tests(f):

View File

@ -10,7 +10,8 @@ np. odległość pomiędzy punktami (0, 0, 0) i (3, 4, 0) jest równa 5.
"""
def euclidean_distance(x, y):
pass
return sum([(x-y)**2 for (x,y) in zip(x,y)])**(0.5)
def tests(f):
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]

View File

@ -10,7 +10,10 @@ ma być zwracany napis "It's not a Big 'No!'".
"""
def big_no(n):
pass
if n >= 5:
return "N"+ n*"O"+"!"
else:
return "It's not a Big 'No!'"
def tests(f):
inputs = [[5], [6], [2]]

View File

@ -6,7 +6,7 @@ Napisz funkcję char_sum, która dla zadanego łańcucha zwraca
sumę kodów ASCII znaków.
"""
def char_sum(text):
pass
return sum([ord(x) for x in text]) # int nie dziala
def tests(f):
inputs = [["this is a string"], ["this is another string"]]

View File

@ -7,7 +7,9 @@ przez 3 lub 5 mniejszych niż n.
"""
def sum_div35(n):
pass
x = 0
return sum(x for x in range(0,n) if x % 3 == 0 or x % 5 == 0)
def tests(f):
inputs = [[10], [100], [3845]]

View File

@ -9,7 +9,15 @@ Np. leet('leet') powinno zwrócić '1337'.
def leet_speak(text):
pass
change = [
('e', '3'),
('l', '1'),
('o', '0'),
('t', '7')
]
for x, y in change:
text = text.replace(x,y)
return text
def tests(f):

View File

@ -9,7 +9,12 @@ na wielką. Np. pokemon_speak('pokemon') powinno zwrócić 'PoKeMoN'.
def pokemon_speak(text):
pass
text = list(text)
for x in range(2, len(text),2):
text[x] = text[x].upper()
x = ''.join(text)
return x
def tests(f):

View File

@ -9,7 +9,12 @@ Oba napisy będą składać się wyłacznie z małych liter.
"""
def common_chars(string1, string2):
pass
string1 = string1.replace(' ','')
string2 = string2.replace(' ','')
wynik = list(sorted(set([char for char in string1 if char in string2])))
return wynik
def tests(f):