forked from tdwojak/Python2018
rozwiazanie zadania od 1 do 6
This commit is contained in:
parent
2181b3d4d3
commit
2e4c0027c8
@ -7,8 +7,8 @@ która zawiera tylko elementy z list o parzystych indeksach.
|
||||
"""
|
||||
|
||||
def even_elements(lista):
|
||||
pass
|
||||
|
||||
nowa = lista[::2]
|
||||
return nowa
|
||||
|
||||
def tests(f):
|
||||
inputs = [[[1, 2, 3, 4, 5, 6]], [[]], [[41]]]
|
||||
|
@ -6,7 +6,11 @@
|
||||
"""
|
||||
|
||||
def days_in_year(days):
|
||||
pass
|
||||
if (days % 4 == 0 and days % 100 != 0) or days % 400 == 0:
|
||||
return 366
|
||||
else:
|
||||
return 365
|
||||
|
||||
|
||||
def tests(f):
|
||||
inputs = [[2015], [2012], [1900], [2400], [1977]]
|
||||
|
@ -13,8 +13,14 @@ jak 'set', która przechowuje elementy bez powtórzeń.)
|
||||
|
||||
|
||||
def oov(text, vocab):
|
||||
pass
|
||||
|
||||
slowa = text.split(' ')
|
||||
#print('slowa',slowa)
|
||||
nowe = set(slowa)
|
||||
#print('nowe',nowe)
|
||||
for i in vocab:
|
||||
nowe.remove(i)
|
||||
#print("cos",nowe)
|
||||
return nowe
|
||||
|
||||
|
||||
def tests(f):
|
||||
|
@ -7,7 +7,16 @@ Jeśli podany argument jest mniejszy od 1 powinna być zwracana wartość 0.
|
||||
"""
|
||||
|
||||
def sum_from_one_to_n(n):
|
||||
pass
|
||||
suma = 1
|
||||
i = 1
|
||||
if n < 1:
|
||||
return 0
|
||||
else:
|
||||
while i < n:
|
||||
i += 1
|
||||
suma += i
|
||||
|
||||
return suma
|
||||
|
||||
|
||||
def tests(f):
|
||||
|
@ -8,9 +8,10 @@ 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.
|
||||
"""
|
||||
|
||||
import math
|
||||
def euclidean_distance(x, y):
|
||||
pass
|
||||
d = math.sqrt((x[0] - y[0])**2 +(x[1] - y[1])**2 + (x[2] - y[2])**2)
|
||||
return d
|
||||
|
||||
def tests(f):
|
||||
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]
|
||||
|
@ -10,7 +10,12 @@ ma być zwracany napis "It's not a Big 'No!'".
|
||||
"""
|
||||
|
||||
def big_no(n):
|
||||
pass
|
||||
if n < 5:
|
||||
y = ("It's not a Big 'No!'")
|
||||
return y
|
||||
else:
|
||||
u = 'N' + 'O' * n + "!"
|
||||
return u
|
||||
|
||||
def tests(f):
|
||||
inputs = [[5], [6], [2]]
|
||||
|
Loading…
Reference in New Issue
Block a user