forked from tdwojak/Python2018
labs02 ready
This commit is contained in:
parent
a5f73d423a
commit
d0595e3128
@ -17,13 +17,6 @@ def days_in_year(days):
|
|||||||
else:
|
else:
|
||||||
return 365
|
return 365
|
||||||
|
|
||||||
# To determine whether a year is a leap year, follow these steps:
|
|
||||||
# If the year is evenly divisible by 4, go to step 2. Otherwise, go to step 5.
|
|
||||||
# If the year is evenly divisible by 100, go to step 3. Otherwise, go to step 4.
|
|
||||||
# If the year is evenly divisible by 400, go to step 4. Otherwise, go to step 5.
|
|
||||||
# The year is a leap year (it has 366 days).
|
|
||||||
# The year is not a leap year (it has 365
|
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
inputs = [[2015], [2012], [1900], [2400], [1977]]
|
inputs = [[2015], [2012], [1900], [2400], [1977]]
|
||||||
outputs = [365, 366, 365, 366, 365]
|
outputs = [365, 366, 365, 366, 365]
|
||||||
|
@ -13,8 +13,7 @@ jak 'set', która przechowuje elementy bez powtórzeń.)
|
|||||||
|
|
||||||
|
|
||||||
def oov(text, vocab):
|
def oov(text, vocab):
|
||||||
words = text.lower().split()
|
return (set(text.lower().split()) - set(vocab))
|
||||||
return (set(words) - set(vocab))
|
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
inputs = [("this is a string , which i will use for string testing",
|
inputs = [("this is a string , which i will use for string testing",
|
||||||
|
@ -10,10 +10,7 @@ np. odległość pomiędzy punktami (0, 0, 0) i (3, 4, 0) jest równa 5.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
def euclidean_distance(x, y):
|
def euclidean_distance(x, y):
|
||||||
dist = 0
|
return m.sqrt(sum((i-j)**2 for i, j in zip(x, y)))
|
||||||
for i, j in zip(x, y):
|
|
||||||
dist += (i-j) ** 2
|
|
||||||
return m.sqrt(dist)
|
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]
|
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]
|
||||||
|
@ -9,8 +9,11 @@ Np. leet('leet') powinno zwrócić '1337'.
|
|||||||
|
|
||||||
|
|
||||||
def leet_speak(text):
|
def leet_speak(text):
|
||||||
pass
|
words_dict = { 'e': '3', 'l': '1', 'o': '0', 't': '7' }
|
||||||
|
for letter in text:
|
||||||
|
if letter in words_dict:
|
||||||
|
text = text.replace(letter, words_dict[letter])
|
||||||
|
return text
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
inputs = [['leet'], ['do not want']]
|
inputs = [['leet'], ['do not want']]
|
||||||
|
@ -9,8 +9,13 @@ na wielką. Np. pokemon_speak('pokemon') powinno zwrócić 'PoKeMoN'.
|
|||||||
|
|
||||||
|
|
||||||
def pokemon_speak(text):
|
def pokemon_speak(text):
|
||||||
pass
|
result = []
|
||||||
|
for i in range(len(text)):
|
||||||
|
if i % 2 == 0:
|
||||||
|
result.append(text[i].upper())
|
||||||
|
else:
|
||||||
|
result.append(text[i])
|
||||||
|
return ''.join(result)
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
inputs = [['pokemon'], ['do not want'], ['POKEMON']]
|
inputs = [['pokemon'], ['do not want'], ['POKEMON']]
|
||||||
|
@ -11,7 +11,6 @@ Oba napisy będą składać się wyłacznie z małych liter.
|
|||||||
def common_chars(string1, string2):
|
def common_chars(string1, string2):
|
||||||
return sorted(set(string1.replace(' ', '')) & set(string2.replace(' ', '')))
|
return sorted(set(string1.replace(' ', '')) & set(string2.replace(' ', '')))
|
||||||
|
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
inputs = [["this is a string", "ala ma kota"]]
|
inputs = [["this is a string", "ala ma kota"]]
|
||||||
outputs = [['a', 't']]
|
outputs = [['a', 't']]
|
||||||
|
@ -6,7 +6,7 @@ def suma(a, b):
|
|||||||
"""
|
"""
|
||||||
Napisz funkcję, która zwraca sumę elementów.
|
Napisz funkcję, która zwraca sumę elementów.
|
||||||
"""
|
"""
|
||||||
return 0
|
return a + b
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
inputs = [(2, 3), (0, 0), (1, 1)]
|
inputs = [(2, 3), (0, 0), (1, 1)]
|
||||||
|
Loading…
Reference in New Issue
Block a user