import server mod = server.problems.load_language('python', 'sl') id = 245 name = 'Slikaj' slug = 'Slikaj' description = '''\

NapiĊĦite funkcijo map(f, xs), ki sprejme funkcijo f in seznam [x_1, x_2, ..., x_n] in vrne nov seznam [f(x_1), f(x_2), ..., f(x_n)].

>>> map(abs, [-5, 8, -3, -1, 3])
[5, 8, 3, 1, 3]
>>> map(len, "Daydream delusion limousine eyelash".split())
[8, 8, 9, 7]

''' plan = [] hint = { 'final_hint': ['''\

Program je pravilen!

'''], }