summaryrefslogtreecommitdiff
path: root/python/problems/functions_and_modules
diff options
context:
space:
mode:
Diffstat (limited to 'python/problems/functions_and_modules')
-rw-r--r--python/problems/functions_and_modules/all/common.py32
-rw-r--r--python/problems/functions_and_modules/any/common.py30
-rw-r--r--python/problems/functions_and_modules/caesar_cipher/common.py36
-rw-r--r--python/problems/functions_and_modules/common.py2
-rw-r--r--python/problems/functions_and_modules/dominoes/common.py29
-rw-r--r--python/problems/functions_and_modules/largest_sublist/common.py27
-rw-r--r--python/problems/functions_and_modules/lists_sum/common.py29
-rw-r--r--python/problems/functions_and_modules/longest_word/common.py30
-rw-r--r--python/problems/functions_and_modules/map/common.py25
-rw-r--r--python/problems/functions_and_modules/multiplicative_range/common.py27
-rw-r--r--python/problems/functions_and_modules/similarity/common.py32
-rw-r--r--python/problems/functions_and_modules/suspicious_words/common.py29
12 files changed, 294 insertions, 34 deletions
diff --git a/python/problems/functions_and_modules/all/common.py b/python/problems/functions_and_modules/all/common.py
index 7fb60f5..e87aa74 100644
--- a/python/problems/functions_and_modules/all/common.py
+++ b/python/problems/functions_and_modules/all/common.py
@@ -23,12 +23,37 @@ hint_type = {
}
def test(python, code):
- test_in = [1]
+ func_name = 'all'
+ tokens = get_tokens(code)
+ if not has_token_sequence(tokens, ['def', func_name]):
+ return False, [{'id' : 'no_func_name', 'args' : {'func_name' : func_name}}]
+
+ in_out = [
+ ([True, True, False], False),
+ ([True, True], True),
+ ([1, 2, 3, 0], False),
+ (['foo', 42, True], True),
+ (['foo', '', 42, True], False),
+ (['foo', 0.0, 42, True], False),
+ (['foo', None, 42, True], False),
+ (['foo', (), 42, True], False),
+ (['foo', [], 42, True], False),
+ ([], True),
+ ]
+
+ test_in = [(func_name+'(%s)'%str(l[0]), None) for l in in_out]
+ test_out = [l[1] for l in in_out]
+
+ answers = python(code=code, inputs=test_in, timeout=1.0)
n_correct = 0
+ tin, tout = None, None
+ for i, (ans, to) in enumerate(zip(answers, test_out)):
+ n_correct += ans[0] == to
+ if ans[0] != to:
+ tin = test_in[i][0]
+ tout = to
passed = n_correct == len(test_in)
- tin = None
- tout = None
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)}})
@@ -36,6 +61,7 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
+
def hint(python, code):
tokens = get_tokens(code)
diff --git a/python/problems/functions_and_modules/any/common.py b/python/problems/functions_and_modules/any/common.py
index 78867c5..a96ae04 100644
--- a/python/problems/functions_and_modules/any/common.py
+++ b/python/problems/functions_and_modules/any/common.py
@@ -23,12 +23,35 @@ hint_type = {
}
def test(python, code):
- test_in = [1]
+ func_name = 'any'
+ tokens = get_tokens(code)
+ if not has_token_sequence(tokens, ['def', func_name]):
+ return False, [{'id' : 'no_func_name', 'args' : {'func_name' : func_name}}]
+
+ in_out = [
+ ([2, 3, 0], True),
+ ([], False),
+ ([True, False, False], True),
+ ([False, False], False),
+ (['foo', 42, True], True),
+ ([False, 0, 0.0, '', None, (), []], False),
+ ([False, 0, 0.42, '', None, (), []], True),
+ ([False, 0, 0.0, '', None, (), [42]], True),
+ ]
+
+ test_in = [(func_name+'(%s)'%str(l[0]), None) for l in in_out]
+ test_out = [l[1] for l in in_out]
+
+ answers = python(code=code, inputs=test_in, timeout=1.0)
n_correct = 0
+ tin, tout = None, None
+ for i, (ans, to) in enumerate(zip(answers, test_out)):
+ n_correct += ans[0] == to
+ if ans[0] != to:
+ tin = test_in[i][0]
+ tout = to
passed = n_correct == len(test_in)
- tin = None
- tout = None
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)}})
@@ -36,6 +59,7 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
+
def hint(python, code):
tokens = get_tokens(code)
diff --git a/python/problems/functions_and_modules/caesar_cipher/common.py b/python/problems/functions_and_modules/caesar_cipher/common.py
index 494a7f9..3c53369 100644
--- a/python/problems/functions_and_modules/caesar_cipher/common.py
+++ b/python/problems/functions_and_modules/caesar_cipher/common.py
@@ -20,7 +20,7 @@ def caesar(s):
cipher += chr(ord(c) - 23)
else:
cipher += c
- return cipher)
+ return cipher
'''
hint_type = {
@@ -28,12 +28,39 @@ hint_type = {
}
def test(python, code):
- test_in = [1]
+ func_name = 'caesar'
+ tokens = get_tokens(code)
+ if not has_token_sequence(tokens, ['def', func_name]):
+ return False, [{'id' : 'no_func_name', 'args' : {'func_name' : func_name}}]
+
+ in_out = [
+ ('', ''),
+ ('a', 'd'),
+ ('aa', 'dd'),
+ ('ab', 'de'),
+ ('z', 'c'),
+ ('xyz', 'abc'),
+ (' ', ' '),
+ ('a a', 'd d'),
+ ('julij cezar je seveda uporabljal cezarjevo sifro',
+ 'mxolm fhcdu mh vhyhgd xsrudeomdo fhcdumhyr vliur'),
+ ('the quick brown fox jumps over the lazy dog',
+ 'wkh txlfn eurzq ira mxpsv ryhu wkh odcb grj'),
+ ]
+
+ test_in = [(func_name+'("%s")'%str(l[0]), None) for l in in_out]
+ test_out = [l[1] for l in in_out]
+
+ answers = python(code=code, inputs=test_in, timeout=1.0)
n_correct = 0
+ tin, tout = None, None
+ for i, (ans, to) in enumerate(zip(answers, test_out)):
+ n_correct += ans[0] == to
+ if ans[0] != to:
+ tin = test_in[i][0]
+ tout = to
passed = n_correct == len(test_in)
- tin = None
- tout = None
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)}})
@@ -41,6 +68,7 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
+
def hint(python, code):
tokens = get_tokens(code)
diff --git a/python/problems/functions_and_modules/common.py b/python/problems/functions_and_modules/common.py
new file mode 100644
index 0000000..915b041
--- /dev/null
+++ b/python/problems/functions_and_modules/common.py
@@ -0,0 +1,2 @@
+id = 18
+number = 5 \ No newline at end of file
diff --git a/python/problems/functions_and_modules/dominoes/common.py b/python/problems/functions_and_modules/dominoes/common.py
index 5e73d8e..4a0f439 100644
--- a/python/problems/functions_and_modules/dominoes/common.py
+++ b/python/problems/functions_and_modules/dominoes/common.py
@@ -23,12 +23,34 @@ hint_type = {
}
def test(python, code):
- test_in = [1]
+ func_name = 'dominoes'
+ tokens = get_tokens(code)
+ if not has_token_sequence(tokens, ['def', func_name]):
+ return False, [{'id' : 'no_func_name', 'args' : {'func_name' : func_name}}]
+
+ in_out = [
+ ([], True),
+ ([(2, 4), (4, 4)], True),
+ ([(2, 4), (4, 4), (4, 2)], True),
+ ([(2, 4), (4, 4), (4, 2), (2, 9), (9, 1)], True),
+ ([(2, 4), (4, 3), (4, 2), (2, 9), (9, 1)], False),
+ ([(3, 6), (6, 6), (6, 1), (1, 0)], True),
+ ([(3, 6), (6, 6), (2, 3)], False),
+ ]
+
+ test_in = [(func_name+'(%s)'%str(l[0]), None) for l in in_out]
+ test_out = [l[1] for l in in_out]
+
+ answers = python(code=code, inputs=test_in, timeout=1.0)
n_correct = 0
+ tin, tout = None, None
+ for i, (ans, to) in enumerate(zip(answers, test_out)):
+ n_correct += ans[0] == to
+ if ans[0] != to:
+ tin = test_in[i][0]
+ tout = to
passed = n_correct == len(test_in)
- tin = None
- tout = None
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)}})
@@ -36,6 +58,7 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
+
def hint(python, code):
tokens = get_tokens(code)
diff --git a/python/problems/functions_and_modules/largest_sublist/common.py b/python/problems/functions_and_modules/largest_sublist/common.py
index 372e34f..90e3ae4 100644
--- a/python/problems/functions_and_modules/largest_sublist/common.py
+++ b/python/problems/functions_and_modules/largest_sublist/common.py
@@ -29,12 +29,32 @@ hint_type = {
}
def test(python, code):
- test_in = [1]
+ func_name = 'largest_sublist'
+ tokens = get_tokens(code)
+ if not has_token_sequence(tokens, ['def', func_name]):
+ return False, [{'id' : 'no_func_name', 'args' : {'func_name' : func_name}}]
+
+ in_out = [
+ ([[0]], [0]),
+ ([[1, 2]], [1, 2]),
+ ([[1, 2], [], [0]], [1, 2]),
+ ([[2, 4, 1], [3, 1], [], [8, 2], [1, 1, 1, 1]], [8, 2]),
+ ([[5, 3, 6, 3], [1, 2, 3, 4], [5, -1, 0]], [5, 3, 6, 3]),
+ ]
+
+ test_in = [(func_name+'(%s)'%str(l[0]), None) for l in in_out]
+ test_out = [l[1] for l in in_out]
+
+ answers = python(code=code, inputs=test_in, timeout=1.0)
n_correct = 0
+ tin, tout = None, None
+ for i, (ans, to) in enumerate(zip(answers, test_out)):
+ n_correct += ans[0] == to
+ if ans[0] != to:
+ tin = test_in[i][0]
+ tout = to
passed = n_correct == len(test_in)
- tin = None
- tout = None
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)}})
@@ -42,6 +62,7 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
+
def hint(python, code):
tokens = get_tokens(code)
diff --git a/python/problems/functions_and_modules/lists_sum/common.py b/python/problems/functions_and_modules/lists_sum/common.py
index d3afef4..d6ba72f 100644
--- a/python/problems/functions_and_modules/lists_sum/common.py
+++ b/python/problems/functions_and_modules/lists_sum/common.py
@@ -26,12 +26,34 @@ hint_type = {
}
def test(python, code):
- test_in = [1]
+ func_name = 'lists_sum'
+ tokens = get_tokens(code)
+ if not has_token_sequence(tokens, ['def', func_name]):
+ return False, [{'id' : 'no_func_name', 'args' : {'func_name' : func_name}}]
+
+ in_out = [
+ ([], []),
+ ([[]], [0]),
+ ([[0]], [0]),
+ ([[1, 2]], [3]),
+ ([[1, 2], [], [0]], [3, 0, 0]),
+ ([[2, 4, 1], [3, 1], [], [8, 2], [1, 1, 1, 1]], [7, 4, 0, 10, 4]),
+ ([[5, 3, 6, 3], [1, 2, 3, 4], [5, -1, 0]], [17, 10, 4]),
+ ]
+
+ test_in = [(func_name+'(%s)'%str(l[0]), None) for l in in_out]
+ test_out = [l[1] for l in in_out]
+
+ answers = python(code=code, inputs=test_in, timeout=1.0)
n_correct = 0
+ tin, tout = None, None
+ for i, (ans, to) in enumerate(zip(answers, test_out)):
+ n_correct += ans[0] == to
+ if ans[0] != to:
+ tin = test_in[i][0]
+ tout = to
passed = n_correct == len(test_in)
- tin = None
- tout = None
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)}})
@@ -39,6 +61,7 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
+
def hint(python, code):
tokens = get_tokens(code)
diff --git a/python/problems/functions_and_modules/longest_word/common.py b/python/problems/functions_and_modules/longest_word/common.py
index 1201c1d..3ddb269 100644
--- a/python/problems/functions_and_modules/longest_word/common.py
+++ b/python/problems/functions_and_modules/longest_word/common.py
@@ -24,12 +24,35 @@ hint_type = {
}
def test(python, code):
- test_in = [1]
+ func_name = 'longest'
+ tokens = get_tokens(code)
+ if not has_token_sequence(tokens, ['def', func_name]):
+ return False, [{'id' : 'no_func_name', 'args' : {'func_name' : func_name}}]
+
+ in_out = [
+ ('beseda', 'beseda'),
+ ('an ban', 'ban'),
+ ('an ban pet podgan', 'podgan'),
+ ('an ban pet podgan stiri misi', 'podgan'),
+ ('ta clanek je lepo napisan', 'napisan'),
+ ('123456 12345 1234 123 12 1', '123456'),
+ ('12345 123456 12345 1234 123 12 1', '123456'),
+ ('1234 12345 123456 12345 1234 123 12 1', '123456'),
+ ]
+
+ test_in = [(func_name+'("%s")'%str(l[0]), None) for l in in_out]
+ test_out = [l[1] for l in in_out]
+
+ answers = python(code=code, inputs=test_in, timeout=1.0)
n_correct = 0
+ tin, tout = None, None
+ for i, (ans, to) in enumerate(zip(answers, test_out)):
+ n_correct += ans[0] == to
+ if ans[0] != to:
+ tin = test_in[i][0]
+ tout = to
passed = n_correct == len(test_in)
- tin = None
- tout = None
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)}})
@@ -37,6 +60,7 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
+
def hint(python, code):
tokens = get_tokens(code)
diff --git a/python/problems/functions_and_modules/map/common.py b/python/problems/functions_and_modules/map/common.py
index e28f356..ace0a09 100644
--- a/python/problems/functions_and_modules/map/common.py
+++ b/python/problems/functions_and_modules/map/common.py
@@ -23,12 +23,30 @@ hint_type = {
}
def test(python, code):
- test_in = [1]
+ func_name = 'map'
+ tokens = get_tokens(code)
+ if not has_token_sequence(tokens, ['def', func_name]):
+ return False, [{'id' : 'no_func_name', 'args' : {'func_name' : func_name}}]
+
+ in_out = [
+ (('abs', [-5, 8, -3, -1, 3]), [5, 8, 3, 1, 3]),
+ (('len', 'Daydream delusion limousine eyelash'.split()), [8, 8, 9, 7]),
+ (('int', '1 3 5 42'.split()), [1, 3, 5, 42]),
+ ]
+
+ test_in = [(func_name+'({l[0]},{l[1]})'.format(l = l[0]), None) for l in in_out]
+ test_out = [l[1] for l in in_out]
+
+ answers = python(code=code, inputs=test_in, timeout=1.0)
n_correct = 0
+ tin, tout = None, None
+ for i, (ans, to) in enumerate(zip(answers, test_out)):
+ n_correct += ans[0] == to
+ if ans[0] != to:
+ tin = test_in[i][0]
+ tout = to
passed = n_correct == len(test_in)
- tin = None
- tout = None
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)}})
@@ -36,6 +54,7 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
+
def hint(python, code):
tokens = get_tokens(code)
diff --git a/python/problems/functions_and_modules/multiplicative_range/common.py b/python/problems/functions_and_modules/multiplicative_range/common.py
index 9a52dce..0cb2fef 100644
--- a/python/problems/functions_and_modules/multiplicative_range/common.py
+++ b/python/problems/functions_and_modules/multiplicative_range/common.py
@@ -24,12 +24,32 @@ hint_type = {
}
def test(python, code):
- test_in = [1]
+ func_name = 'mrange'
+ tokens = get_tokens(code)
+ if not has_token_sequence(tokens, ['def', func_name]):
+ return False, [{'id' : 'no_func_name', 'args' : {'func_name' : func_name}}]
+
+ in_out = [
+ ((32, 2, 0), []),
+ ((32, 2, 1), [32]),
+ ((32, 2, 2), [32, 64]),
+ ((42, -1, 5), [42, -42, 42, -42, 42]),
+ ((7, 4, 7), [7, 28, 112, 448, 1792, 7168, 28672]),
+ ]
+
+ test_in = [(func_name+'(*%s)'%str(l[0]), None) for l in in_out]
+ test_out = [l[1] for l in in_out]
+
+ answers = python(code=code, inputs=test_in, timeout=1.0)
n_correct = 0
+ tin, tout = None, None
+ for i, (ans, to) in enumerate(zip(answers, test_out)):
+ n_correct += ans[0] == to
+ if ans[0] != to:
+ tin = test_in[i][0]
+ tout = to
passed = n_correct == len(test_in)
- tin = None
- tout = None
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)}})
@@ -37,6 +57,7 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
+
def hint(python, code):
tokens = get_tokens(code)
diff --git a/python/problems/functions_and_modules/similarity/common.py b/python/problems/functions_and_modules/similarity/common.py
index 5cb8fe7..d71137e 100644
--- a/python/problems/functions_and_modules/similarity/common.py
+++ b/python/problems/functions_and_modules/similarity/common.py
@@ -24,12 +24,37 @@ hint_type = {
}
def test(python, code):
- test_in = [1]
+ func_name = 'similarity'
+ tokens = get_tokens(code)
+ if not has_token_sequence(tokens, ['def', func_name]):
+ return False, [{'id' : 'no_func_name', 'args' : {'func_name' : func_name}}]
+
+ in_out = [
+ (('sobota', 'robot'), 4),
+ (('', 'robot'), 0),
+ (('sobota', ''), 0),
+ (('', ''), 0),
+ (('a', 'b'), 0),
+ (('a', 'a'), 1),
+ (('aaa', 'a'), 1),
+ (('amper', 'amonijak'), 2),
+ (('1000 let', 'tisoc let'), 0),
+ (('hamming distance', 'haming distance'), 12)
+ ]
+
+ test_in = [(func_name+'(*%s)'%str(l[0]), None) for l in in_out]
+ test_out = [l[1] for l in in_out]
+
+ answers = python(code=code, inputs=test_in, timeout=1.0)
n_correct = 0
+ tin, tout = None, None
+ for i, (ans, to) in enumerate(zip(answers, test_out)):
+ n_correct += ans[0] == to
+ if ans[0] != to:
+ tin = test_in[i][0]
+ tout = to
passed = n_correct == len(test_in)
- tin = None
- tout = None
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)}})
@@ -37,6 +62,7 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
+
def hint(python, code):
tokens = get_tokens(code)
diff --git a/python/problems/functions_and_modules/suspicious_words/common.py b/python/problems/functions_and_modules/suspicious_words/common.py
index 74868ab..e6e119a 100644
--- a/python/problems/functions_and_modules/suspicious_words/common.py
+++ b/python/problems/functions_and_modules/suspicious_words/common.py
@@ -24,12 +24,34 @@ hint_type = {
}
def test(python, code):
- test_in = [1]
+ func_name = 'suspicious'
+ tokens = get_tokens(code)
+ if not has_token_sequence(tokens, ['def', func_name]):
+ return False, [{'id' : 'no_func_name', 'args' : {'func_name' : func_name}}]
+
+ in_out = [
+ ('', []),
+ ('aa uu', []),
+ ('aa uu au', ['au']),
+ ('muha', ['muha']),
+ ('Muha pa je rekla: "Tale juha se je pa res prilegla, najlepša huala," in odletela.',
+ ['Muha', 'juha', 'huala,"']),
+ ('ameba nima aja in uja, ampak samo a', ['uja,']),
+ ]
+
+ test_in = [(func_name+"('"+l[0]+"')", None) for l in in_out]
+ test_out = [l[1] for l in in_out]
+
+ answers = python(code=code, inputs=test_in, timeout=1.0)
n_correct = 0
+ tin, tout = None, None
+ for i, (ans, to) in enumerate(zip(answers, test_out)):
+ n_correct += ans[0] == to
+ if ans[0] != to:
+ tin = test_in[i][0]
+ tout = to
passed = n_correct == len(test_in)
- tin = None
- tout = None
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)}})
@@ -37,6 +59,7 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
+
def hint(python, code):
tokens = get_tokens(code)