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 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'python/problems/functions')
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.'
--
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 +-----
7 files changed, 7 insertions(+), 35 deletions(-)
(limited to 'python/problems/functions')
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': ['''\
--
cgit v1.2.1