forked from tdwojak/Python2017
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
e3ef2766de
@ -7,7 +7,7 @@ która zawiera tylko elementy z list o parzystych indeksach.
|
||||
"""
|
||||
|
||||
def even_elements(lista):
|
||||
pass
|
||||
return (lista[::2])
|
||||
|
||||
|
||||
def tests(f):
|
||||
|
@ -5,8 +5,15 @@
|
||||
Napisz funkcję days_in_year zwracającą liczbę dni w roku (365 albo 366).
|
||||
"""
|
||||
|
||||
def days_in_year(days):
|
||||
pass
|
||||
def days_in_year(n):
|
||||
if (n % 4 == 0 and n % 100 != 0) or n % 400 == 0:
|
||||
return 366
|
||||
else:
|
||||
return 365
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
def tests(f):
|
||||
inputs = [[2015], [2012], [1900], [2400], [1977]]
|
||||
|
@ -13,7 +13,13 @@ jak 'set', która przechowuje elementy bez powtórzeń.)
|
||||
|
||||
|
||||
def oov(text, vocab):
|
||||
pass
|
||||
list =[]
|
||||
text_s = text.split()
|
||||
for i in text_s:
|
||||
if i.lower() not in vocab:
|
||||
list.append(i.lower())
|
||||
return list
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -7,7 +7,13 @@ Jeśli podany argument jest mniejszy od 1 powinna być zwracana wartość 0.
|
||||
"""
|
||||
|
||||
def sum_from_one_to_n(n):
|
||||
pass
|
||||
suma = 0
|
||||
for i in range(n+1):
|
||||
suma = suma + i
|
||||
if n < 1:
|
||||
return 0
|
||||
else:
|
||||
return suma
|
||||
|
||||
|
||||
def tests(f):
|
||||
|
@ -8,9 +8,15 @@ dwoma punktami przestrzeni trójwymiarowej. Punkty są dane jako
|
||||
trzyelementowe listy liczb zmiennoprzecinkowych.
|
||||
np. odległość pomiędzy punktami (0, 0, 0) i (3, 4, 0) jest równa 5.
|
||||
"""
|
||||
|
||||
from math import sqrt
|
||||
def euclidean_distance(x, y):
|
||||
pass
|
||||
return sqrt(sum((x-y)**2 for x, y in zip(x,y)))
|
||||
|
||||
# return np.sqrt(np.sum((x-y)**2))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
def tests(f):
|
||||
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]
|
||||
|
@ -10,7 +10,11 @@ ma być zwracany napis "It's not a Big 'No!'".
|
||||
"""
|
||||
|
||||
def big_no(n):
|
||||
pass
|
||||
n_first = 'N'
|
||||
if n < 5:
|
||||
return "It's not a Big 'No!'"
|
||||
else:
|
||||
return n_first+n*'O'+'!'
|
||||
|
||||
def tests(f):
|
||||
inputs = [[5], [6], [2]]
|
||||
|
@ -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(char) for char in text)
|
||||
|
||||
def tests(f):
|
||||
inputs = [["this is a string"], ["this is another string"]]
|
||||
|
@ -5,9 +5,13 @@
|
||||
Napisz funkcję sum_div35(n), która zwraca sumę wszystkich liczb podzielnych
|
||||
przez 3 lub 5 mniejszych niż n.
|
||||
"""
|
||||
|
||||
def sum_div35(n):
|
||||
pass
|
||||
sum = 0
|
||||
for n in range(n):
|
||||
if (n % 3 == 0 or n % 5 == 0):
|
||||
sum = sum + n
|
||||
return(sum)
|
||||
|
||||
|
||||
def tests(f):
|
||||
inputs = [[10], [100], [3845]]
|
||||
|
@ -9,7 +9,19 @@ Np. leet('leet') powinno zwrócić '1337'.
|
||||
|
||||
|
||||
def leet_speak(text):
|
||||
pass
|
||||
newStr = ''
|
||||
for i in text:
|
||||
if i == 'e':
|
||||
newStr += '3'
|
||||
elif i == 'l':
|
||||
newStr += '1'
|
||||
elif i == 'o':
|
||||
newStr += '0'
|
||||
elif i == 't':
|
||||
newStr += '7'
|
||||
else:
|
||||
newStr += i
|
||||
return newStr
|
||||
|
||||
|
||||
def tests(f):
|
||||
|
@ -9,7 +9,9 @@ na wielką. Np. pokemon_speak('pokemon') powinno zwrócić 'PoKeMoN'.
|
||||
|
||||
|
||||
def pokemon_speak(text):
|
||||
pass
|
||||
slowo = ''.join([text[i].upper() if i % 2 == 0 else text[i] for i in range(0, len(text))])
|
||||
return slowo
|
||||
|
||||
|
||||
|
||||
def tests(f):
|
||||
|
@ -9,8 +9,25 @@ Oba napisy będą składać się wyłacznie z małych liter.
|
||||
"""
|
||||
|
||||
def common_chars(string1, string2):
|
||||
pass
|
||||
|
||||
string1 = set(string1.replace(" ",""))
|
||||
string2 = set(string2.replace(" ",""))
|
||||
|
||||
common = []
|
||||
for c1 in string1:
|
||||
for c2 in string2:
|
||||
if c1 == c2:
|
||||
common.append(c1)
|
||||
common.sort()
|
||||
return common
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# slowo = sum( c1 == c2 for c1, c2 in zip(string1, string2))
|
||||
# print(slowo)
|
||||
# return slowo
|
||||
|
||||
def tests(f):
|
||||
inputs = [["this is a string", "ala ma kota"]]
|
||||
|
Loading…
Reference in New Issue
Block a user