diff options
author | Martin Možina <martin.mozina@fri.uni-lj.si> | 2016-12-05 11:48:15 +0100 |
---|---|---|
committer | Martin Možina <martin.mozina@fri.uni-lj.si> | 2016-12-05 11:48:15 +0100 |
commit | 413bb73adaee77e8c1ab1c5721b13d9b6f756a7a (patch) | |
tree | ea922b5e9ef933cc5f97c303cadd820a19a0f80f /python/problems | |
parent | b9e78f3b26f3a6bc8ffd0ad2a2eeeba7184b51af (diff) |
Fix some instructions.
Diffstat (limited to 'python/problems')
-rw-r--r-- | python/problems/comprehensions/sl.py | 2 | ||||
-rw-r--r-- | python/problems/dictionaries/family/sl.py | 3 | ||||
-rw-r--r-- | python/problems/dictionaries/sl.py | 2 | ||||
-rw-r--r-- | python/problems/recursion/sl.py | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/python/problems/comprehensions/sl.py b/python/problems/comprehensions/sl.py index e1ef13c..63414b7 100644 --- a/python/problems/comprehensions/sl.py +++ b/python/problems/comprehensions/sl.py @@ -1,3 +1,3 @@ name = 'Izpeljani seznami, slovarji, množice; generatorji' -description = 'Izpeljani seznami, slovarji, množice; generatorji' +description = '<a href="[%@resource comprehensions_sl.html%]">Izpeljani seznami, slovarji, množice; generatorji</a>' diff --git a/python/problems/dictionaries/family/sl.py b/python/problems/dictionaries/family/sl.py index 2a572d3..2eaff15 100644 --- a/python/problems/dictionaries/family/sl.py +++ b/python/problems/dictionaries/family/sl.py @@ -33,7 +33,8 @@ Za lažje razumevanje si relacije predstavimo s sliko: <p> Napišite funkcijo <code>family_tree(family)</code>, ki sprejeme seznam v katerem je spravljeno družinsko drevo in vrne slovar v katerem je za vsakega -starša spravljen seznam vseh njegovih otrok.</p> +starša spravljen seznam vseh njegovih otrok. Vrstni red otrok naj bo +enak vrstnem redu otrok v začetnem seznamu. </p> <pre> >>> family_tree(family) {'renee': ['rob', 'bob'], diff --git a/python/problems/dictionaries/sl.py b/python/problems/dictionaries/sl.py index 416c265..6b65117 100644 --- a/python/problems/dictionaries/sl.py +++ b/python/problems/dictionaries/sl.py @@ -1,3 +1,3 @@ name = 'Slovarji' -description = 'Uporaba slovarjev in množic.' +description = 'Uporaba <a href="[%@resource dict_sl.html%]">slovarjev in množic</a>.' diff --git a/python/problems/recursion/sl.py b/python/problems/recursion/sl.py index 94fef5c..f398b78 100644 --- a/python/problems/recursion/sl.py +++ b/python/problems/recursion/sl.py @@ -1,2 +1,2 @@ name = 'Rekurzija' -description = 'Vaje iz rekurzije' +description = 'Vaje iz <a href="[%@resource recursion_sl.html%]">rekurzije</a>' |