summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2017-10-20 17:38:44 +0200
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2017-10-20 17:38:44 +0200
commitfd218b8d0ec631312b2334a44de3c6fde8266998 (patch)
tree42567604e44f41c62785b147b27aaaa12535793b
parent88131a87b06c32f59398505756efe4dbbc8cf834 (diff)
Python: add first HW for FKKT students
-rw-r--r--python/problems/hw-fkkt/common.py2
-rw-r--r--python/problems/hw-fkkt/en.py3
-rw-r--r--python/problems/hw-fkkt/hw1/common.py58
-rw-r--r--python/problems/hw-fkkt/hw1/sl.py23
-rw-r--r--python/problems/hw-fkkt/sl.py3
5 files changed, 89 insertions, 0 deletions
diff --git a/python/problems/hw-fkkt/common.py b/python/problems/hw-fkkt/common.py
new file mode 100644
index 0000000..b16d92b
--- /dev/null
+++ b/python/problems/hw-fkkt/common.py
@@ -0,0 +1,2 @@
+id = 2510
+number = 15
diff --git a/python/problems/hw-fkkt/en.py b/python/problems/hw-fkkt/en.py
new file mode 100644
index 0000000..8aae210
--- /dev/null
+++ b/python/problems/hw-fkkt/en.py
@@ -0,0 +1,3 @@
+name = 'Homework assignments - FKKT'
+description = 'Homework assignments with tests'
+
diff --git a/python/problems/hw-fkkt/hw1/common.py b/python/problems/hw-fkkt/hw1/common.py
new file mode 100644
index 0000000..edf7887
--- /dev/null
+++ b/python/problems/hw-fkkt/hw1/common.py
@@ -0,0 +1,58 @@
+from python.util import has_token_sequence, string_almost_equal, \
+ string_contains_number, get_tokens, get_numbers, get_exception_desc
+from server.hints import Hint
+import re
+
+id = 25050
+number = 1
+visible = True
+
+solution = '''\
+'''
+
+hint_type = {
+ 'final_hint': Hint('final_hint'),
+}
+
+def test(python, code, aux_code=''):
+ # List of inputs: (expression to eval, stdin).
+ test_in = [
+ (None, '298\n1.4\n0.028964'),
+ (None, '0\n1.4\n0.028964'),
+ (None, '500\n1.66\n0.03995'),
+ (None, '407\n1.33\n0.018'),
+ ]
+ test_out = [
+ 'c = 346.07 m/s',
+ 'c = 0.0 m/s',
+ 'c = 415.62 m/s',
+ 'c = 500.04 m/s',
+ ]
+
+ # List of outputs: (expression result, stdout, stderr, exception).
+ answers = python(code=aux_code+code, inputs=test_in, timeout=1.0)
+ outputs = [ans[1] for ans in answers]
+
+ n_correct = 0
+ tin = None
+ for i, (output, correct) in enumerate(zip(outputs, test_out)):
+ if output.rstrip().endswith(correct) and \
+ "Vnesite temperaturo [K]:" in output and \
+ "Vnesite adiabatni koeficient:" in output and \
+ "Vnesite molsko maso [kg/mol]:" in output:
+ n_correct += 1
+ else:
+ tin = test_in[i][1]
+ tout = correct
+
+ passed = n_correct == len(test_in)
+ hints = [{'id': 'test_results', 'args': {'passed': n_correct, 'total': len(test_in)}}]
+ if tin:
+ hints.append({'id': 'problematic_test_case', 'args': {'testin': str(tin), 'testout': str(tout)}})
+ if passed:
+ hints.append({'id': 'final_hint'})
+ return passed, hints
+
+def hint(python, code, aux_code=''):
+ #return [{'id' : 'no_hints'}]
+ return None
diff --git a/python/problems/hw-fkkt/hw1/sl.py b/python/problems/hw-fkkt/hw1/sl.py
new file mode 100644
index 0000000..f7115f6
--- /dev/null
+++ b/python/problems/hw-fkkt/hw1/sl.py
@@ -0,0 +1,23 @@
+import server
+mod = server.problems.load_language('python', 'sl')
+
+name = 'Prva domača naloga'
+slug = 'Prva domača naloga'
+
+description = '''\
+<p>Navodila so objavljena na <a href="https://ucilnica.fri.uni-lj.si/course/view.php?id=239" target="_blank">spletni učilnici</a>.</p>'''
+
+
+plan = []
+
+hint = {
+ 'no_hints' : [
+ "<p>Domače naloge ne vsebujejo namigov!</p>"
+ ],
+
+
+ 'final_hint' : [
+ '''\
+<p>Odlično, program deluje na vseh testih!</p>
+''']
+}
diff --git a/python/problems/hw-fkkt/sl.py b/python/problems/hw-fkkt/sl.py
new file mode 100644
index 0000000..34bff85
--- /dev/null
+++ b/python/problems/hw-fkkt/sl.py
@@ -0,0 +1,3 @@
+name = 'Domače naloge - FKKT'
+description = 'Domače naloge s testi'
+