1
0
forked from tdwojak/Python2017

tasks2-10

This commit is contained in:
s45157 2017-11-19 15:42:27 +01:00
parent df3a24d5fd
commit a1a1a85482
7 changed files with 22 additions and 8 deletions

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 reduce(lambda x, y: (x+y), range(1,n+1))
def tests(f):

View File

@ -8,9 +8,16 @@ 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
a = y[0]-x[0]
b = y[1]-x[1]
c = y[2]-x[2]
return math.sqrt( math.sqrt(a**2+b**2)**2 + c**2)
def tests(f):
inputs = [[(2.3, 4.3, -7.5), (2.3, 8.5, -7.5)]]

View File

@ -10,7 +10,11 @@ ma być zwracany napis "It's not a Big 'No!'".
"""
def big_no(n):
pass
if n < 5:
return "It's not a Big 'No!'"
else:
return "N" + n*"O" + "!"
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 reduce(lambda x, y: (x + y), map(lambda ch: ord(ch), text))
def tests(f):
inputs = [["this is a string"], ["this is another string"]]

View File

@ -7,7 +7,7 @@ przez 3 lub 5 mniejszych niż n.
"""
def sum_div35(n):
pass
return reduce(lambda x, y: (x + y), filter(lambda x: (x%3==0 or x%5==0), range(1,n)))
def tests(f):
inputs = [[10], [100], [3845]]

View File

@ -9,7 +9,7 @@ Np. leet('leet') powinno zwrócić '1337'.
def leet_speak(text):
pass
return ''.join(map( lambda ch: {'e': '3', 'l': '1', 'o': '0', 't': '7'}.get(ch, ch), text))
def tests(f):

View File

@ -9,11 +9,11 @@ na wielką. Np. pokemon_speak('pokemon') powinno zwrócić 'PoKeMoN'.
def pokemon_speak(text):
pass
return ''.join( map( lambda t: t[0]+t[1], zip( text[::2].upper(), text[1::2] ) ) )
def tests(f):
inputs = [['pokemon'], ['do not want'], 'POKEMON']
inputs = [['pokemon'], ['do not want'], ['POKEMON']]
outputs = ['PoKeMoN', 'Do nOt wAnT', 'POKEMON']
for input, output in zip(inputs, outputs):