diff options
author | Martin <martin@leo.fri1.uni-lj.si> | 2015-10-09 11:17:49 +0200 |
---|---|---|
committer | Martin <martin@leo.fri1.uni-lj.si> | 2015-10-09 11:17:49 +0200 |
commit | 84f3426c937d1bb9d44ba25a71706416fbb8b85d (patch) | |
tree | 84b064c8150b6bbd3422fb2c91c6121e0a01902c /python/problems/functions/greatest_absolutist | |
parent | 45474b5c8cefa916aeb64e1c15a79f647a86d58c (diff) |
Added several new problems.
They have no tests nor hints implemented.
Diffstat (limited to 'python/problems/functions/greatest_absolutist')
-rw-r--r-- | python/problems/functions/greatest_absolutist/sl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/problems/functions/greatest_absolutist/sl.py b/python/problems/functions/greatest_absolutist/sl.py index d51cd96..ee33c6d 100644 --- a/python/problems/functions/greatest_absolutist/sl.py +++ b/python/problems/functions/greatest_absolutist/sl.py @@ -101,7 +101,7 @@ V tem primeru se lahko zgodi, da se zanka ne izteče do konca.</p>''', Tudi to nalogo lahko rešimo s funkcijo <code>max</code>:</p> <pre> def max_abs(xs): - return max(xs, key = lambda x: abs(x)) + return max(xs, key = abs(x)) </pre>''', } |