diff options
author | Martin Možina <martin.mozina@fri.uni-lj.si> | 2015-10-26 17:50:22 +0100 |
---|---|---|
committer | Martin Možina <martin.mozina@fri.uni-lj.si> | 2015-10-26 17:50:22 +0100 |
commit | ed5473c15bdb472219056b30850605cf7e3b9a18 (patch) | |
tree | 4df880722b9865a2c5ef5bc23032e77144e5a763 /python/problems/functions/greatest_absolutist | |
parent | ce6b6b0bc9af3cff176bd995ee25c8334eea632c (diff) |
Corrected tests in for-loop problems.
Fixed some typos.
Diffstat (limited to 'python/problems/functions/greatest_absolutist')
-rw-r--r-- | python/problems/functions/greatest_absolutist/sl.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/problems/functions/greatest_absolutist/sl.py b/python/problems/functions/greatest_absolutist/sl.py index a45f483..79cfb06 100644 --- a/python/problems/functions/greatest_absolutist/sl.py +++ b/python/problems/functions/greatest_absolutist/sl.py @@ -8,7 +8,7 @@ slug = 'Največji absolutist' description = '''\ -<p>Napišite funkcijo <code>max_abs(xs)</code>, ki vrne največje število po +<p>Napiši funkcijo <code>max_abs(xs)</code>, ki vrne največje število po absolutni vrednosti v seznamu <code>xs</code>.</p> <pre> >>> max_abs([5, 1, -6, -7, 2]) @@ -17,7 +17,7 @@ absolutni vrednosti v seznamu <code>xs</code>.</p> ''' function = ['''\ -<p>Napišite <b>definicijo funkcije</b> <code>max_abs(xs)</code>.</p>''', +<p>Napiši <b>definicijo funkcije</b> <code>max_abs(xs)</code>.</p>''', '''\ <p>Definicijo funkcije začnemo z <code>def</code>, temu sledi ime, potem oklepaji, v katerih naštejemo argumente funkcije, nato zaklepaj in na koncu dvopičje</p>''', @@ -50,7 +50,7 @@ plan = [function, return_clause] for_loop = ['''\ -<p>Preglejte elemente z zanko</p>. +<p>Preglej elemente z zanko</p>. ''', '''\ <pre> @@ -59,7 +59,7 @@ for x in xs: if_clause = ['''\ -<p>Preverite, če je trenutni element večji od največjega (po absolutni vrednosti)</p>''', +<p>Preveri, če je trenutni element večji od največjega (po absolutni vrednosti)</p>''', '''\ <pre> if abs(x) > abs(najvecji): |