From 7217e23268eb28b2e6e745b74f697b4a1581658c Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Mon, 7 Dec 2015 16:31:08 +0100 Subject: Add . after Python problem-group descriptions --- python/problems/functions/sl.py | 2 +- python/problems/functions_and_modules/sl.py | 2 +- python/problems/introduction/sl.py | 2 +- python/problems/lists_and_for/sl.py | 2 +- python/problems/while_and_if/sl.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'python') diff --git a/python/problems/functions/sl.py b/python/problems/functions/sl.py index e5f812d..7de0a40 100644 --- a/python/problems/functions/sl.py +++ b/python/problems/functions/sl.py @@ -1,3 +1,3 @@ name = 'Funkcije' -description = 'Pisanje in uporaba funkcij' +description = 'Pisanje in uporaba funkcij.' diff --git a/python/problems/functions_and_modules/sl.py b/python/problems/functions_and_modules/sl.py index fb4f520..e4321ec 100644 --- a/python/problems/functions_and_modules/sl.py +++ b/python/problems/functions_and_modules/sl.py @@ -1,3 +1,3 @@ name = 'Funkcije in delo z moduli' -description = 'Uporaba funkcij in delo z moduli (predvsem z nizi)' +description = 'Uporaba funkcij in delo z moduli (predvsem z nizi).' diff --git a/python/problems/introduction/sl.py b/python/problems/introduction/sl.py index 3141ece..403c941 100644 --- a/python/problems/introduction/sl.py +++ b/python/problems/introduction/sl.py @@ -1,3 +1,3 @@ name = 'Uvod' -description = 'Izrazi, spremenljivke, funkcije, prvi program' +description = 'Izrazi, spremenljivke, funkcije, prvi program.' diff --git a/python/problems/lists_and_for/sl.py b/python/problems/lists_and_for/sl.py index d9c38e9..361f1f0 100644 --- a/python/problems/lists_and_for/sl.py +++ b/python/problems/lists_and_for/sl.py @@ -1,2 +1,2 @@ name = 'Seznami in zanka for' -description = 'Seznami, terke, zanka for' \ No newline at end of file +description = 'Seznami, terke, zanka for.' diff --git a/python/problems/while_and_if/sl.py b/python/problems/while_and_if/sl.py index 3d037b8..fbb177a 100644 --- a/python/problems/while_and_if/sl.py +++ b/python/problems/while_and_if/sl.py @@ -1,2 +1,2 @@ name = 'Pogojni stavki in zanke' -description = 'Logični izrazi, pogojni stavek if-else, zanka while' +description = 'Logični izrazi, pogojni stavek if-else, zanka while.' -- cgit v1.2.1 From 8869415c08615f8aa2d4f8adbb598d8d436f3e5c Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Mon, 14 Dec 2015 21:08:07 +0100 Subject: Remove empty plan messages from Python problems --- python/problems/functions/divisors/sl.py | 6 +----- python/problems/functions/divisors_sum/sl.py | 6 +----- python/problems/functions/friendly_numbers/sl.py | 6 +----- python/problems/functions/palindrome/sl.py | 6 +----- python/problems/functions/palindromic_numbers/sl.py | 6 +----- python/problems/functions/perfect_numbers/sl.py | 6 +----- python/problems/functions/prime_numbers/sl.py | 6 +----- python/problems/functions_and_modules/all/sl.py | 6 +----- python/problems/functions_and_modules/any/sl.py | 6 +----- python/problems/functions_and_modules/caesar_cipher/sl.py | 6 +----- python/problems/functions_and_modules/dominoes/sl.py | 6 +----- python/problems/functions_and_modules/largest_sublist/sl.py | 6 +----- python/problems/functions_and_modules/lists_sum/sl.py | 6 +----- python/problems/functions_and_modules/map/sl.py | 6 +----- python/problems/functions_and_modules/multiplicative_range/sl.py | 6 +----- python/problems/functions_and_modules/suspicious_words/sl.py | 6 +----- 16 files changed, 16 insertions(+), 80 deletions(-) (limited to 'python') diff --git a/python/problems/functions/divisors/sl.py b/python/problems/functions/divisors/sl.py index 76b0917..f0e25c4 100644 --- a/python/problems/functions/divisors/sl.py +++ b/python/problems/functions/divisors/sl.py @@ -12,11 +12,7 @@ description = '''\

Napiši funkcijo divisors(n), ki izpiše vse delitelje števila (brez samega sebe), ki ga vnese uporabnik.

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions/divisors_sum/sl.py b/python/problems/functions/divisors_sum/sl.py index 47b8719..31cd369 100644 --- a/python/problems/functions/divisors_sum/sl.py +++ b/python/problems/functions/divisors_sum/sl.py @@ -13,11 +13,7 @@ description = '''\ Napiši funkcijo divisors_sum(n), ki vrne vsoto vseh deliteljev števila, ki ga vnese uporabnik.

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions/friendly_numbers/sl.py b/python/problems/functions/friendly_numbers/sl.py index 51d47ae..dd15e0d 100644 --- a/python/problems/functions/friendly_numbers/sl.py +++ b/python/problems/functions/friendly_numbers/sl.py @@ -23,11 +23,7 @@ None

Uporabite funkcijo za vsoto deliteljev!

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions/palindrome/sl.py b/python/problems/functions/palindrome/sl.py index e005057..9b064dd 100644 --- a/python/problems/functions/palindrome/sl.py +++ b/python/problems/functions/palindrome/sl.py @@ -19,11 +19,7 @@ False

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions/palindromic_numbers/sl.py b/python/problems/functions/palindromic_numbers/sl.py index 8d64bab..db9a062 100644 --- a/python/problems/functions/palindromic_numbers/sl.py +++ b/python/problems/functions/palindromic_numbers/sl.py @@ -17,11 +17,7 @@ ki ga lahko dobimo kot produkt dveh tromestnih števil. Vir: Project Euler, Problem 4.

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions/perfect_numbers/sl.py b/python/problems/functions/perfect_numbers/sl.py index a354a17..156b41d 100644 --- a/python/problems/functions/perfect_numbers/sl.py +++ b/python/problems/functions/perfect_numbers/sl.py @@ -16,11 +16,7 @@ Primer popolnega števila je 28, saj so njegovi delitelji 1, 2, 4, 7, 14, njihov

Uporabite funkcijo za vsoto deliteljev!

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions/prime_numbers/sl.py b/python/problems/functions/prime_numbers/sl.py index f6c6b24..a224696 100644 --- a/python/problems/functions/prime_numbers/sl.py +++ b/python/problems/functions/prime_numbers/sl.py @@ -13,11 +13,7 @@ description = '''\ Napišite funkcijo prime(n), ki izpiše vsa praštevila manjša od n.

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions_and_modules/all/sl.py b/python/problems/functions_and_modules/all/sl.py index f71fa4b..e224811 100644 --- a/python/problems/functions_and_modules/all/sl.py +++ b/python/problems/functions_and_modules/all/sl.py @@ -26,11 +26,7 @@ True

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions_and_modules/any/sl.py b/python/problems/functions_and_modules/any/sl.py index f32e50e..ab1aacf 100644 --- a/python/problems/functions_and_modules/any/sl.py +++ b/python/problems/functions_and_modules/any/sl.py @@ -20,11 +20,7 @@ False

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions_and_modules/caesar_cipher/sl.py b/python/problems/functions_and_modules/caesar_cipher/sl.py index ea4d9c8..bedf403 100644 --- a/python/problems/functions_and_modules/caesar_cipher/sl.py +++ b/python/problems/functions_and_modules/caesar_cipher/sl.py @@ -21,11 +21,7 @@ Predpostavite lahko, da niz s vsebuje le male črke angleške besed

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions_and_modules/dominoes/sl.py b/python/problems/functions_and_modules/dominoes/sl.py index 41cb860..cfcee24 100644 --- a/python/problems/functions_and_modules/dominoes/sl.py +++ b/python/problems/functions_and_modules/dominoes/sl.py @@ -15,11 +15,7 @@ Vrsta domin je podana s seznamom parov (terk), na primer ki prejme takšen seznam in pove, ali so domine pravilno zložene. Za prvi seznam mora vrniti True in za drugega False.

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions_and_modules/largest_sublist/sl.py b/python/problems/functions_and_modules/largest_sublist/sl.py index b550ce2..c3582f0 100644 --- a/python/problems/functions_and_modules/largest_sublist/sl.py +++ b/python/problems/functions_and_modules/largest_sublist/sl.py @@ -19,11 +19,7 @@ Napiši funkcijo largest_sublist, ki vrne podseznam z največjo vso

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions_and_modules/lists_sum/sl.py b/python/problems/functions_and_modules/lists_sum/sl.py index 4baa002..88ac541 100644 --- a/python/problems/functions_and_modules/lists_sum/sl.py +++ b/python/problems/functions_and_modules/lists_sum/sl.py @@ -21,11 +21,7 @@ Za gornji seznam naj funkcija vrne seznam [7, 4, 0, 10, 4], saj je,

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions_and_modules/map/sl.py b/python/problems/functions_and_modules/map/sl.py index 18c47fb..6695b30 100644 --- a/python/problems/functions_and_modules/map/sl.py +++ b/python/problems/functions_and_modules/map/sl.py @@ -20,11 +20,7 @@ in vrne nov seznam [f(x_1), f(x_2), ..., f(x_n)].

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions_and_modules/multiplicative_range/sl.py b/python/problems/functions_and_modules/multiplicative_range/sl.py index 8bd4bd0..bb02a84 100644 --- a/python/problems/functions_and_modules/multiplicative_range/sl.py +++ b/python/problems/functions_and_modules/multiplicative_range/sl.py @@ -18,11 +18,7 @@ Napišite funkcijo mrange(start, factor, length), ki vrne seznam, k

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ diff --git a/python/problems/functions_and_modules/suspicious_words/sl.py b/python/problems/functions_and_modules/suspicious_words/sl.py index 3bf2c7b..1aa3bdf 100644 --- a/python/problems/functions_and_modules/suspicious_words/sl.py +++ b/python/problems/functions_and_modules/suspicious_words/sl.py @@ -18,11 +18,7 @@ Beseda je sumljiva, če vsebuje tako črko u kot črko a.

''' -plan = ['''\ -

-''', - '''\ -

'''] +plan = [] hint = { 'final_hint': ['''\ -- cgit v1.2.1