tests
listlengths
0
600
status
stringclasses
7 values
n_execs
int64
0
60k
arcs
int64
0
41
n_seeds
int64
0
26
task_id
stringlengths
6
13
dataset
stringclasses
2 values
entry_point
stringlengths
1
31
secs
float64
0.04
647
[ { "input": "('',)", "output": "0", "seed": true }, { "input": "('abcde',)", "output": "5", "seed": true }, { "input": "('aaaaAAAAaaaa',)", "output": "1", "seed": true }, { "input": "('Jerry jERRY JeRRRY',)", "output": "5", "seed": true }, { "input"...
ok
748
1
4
HumanEval/16
humaneval
count_distinct_characters
0.05
[ { "input": "(3, 7)", "output": "1", "seed": true }, { "input": "(10, 15)", "output": "5", "seed": true }, { "input": "(49, 14)", "output": "7", "seed": true }, { "input": "(144, 60)", "output": "12", "seed": true }, { "input": "(146, 60)", "out...
ok
982
4
4
HumanEval/13
humaneval
greatest_common_divisor
0.05
[ { "input": "(3.5,)", "output": "0.5", "seed": true }, { "input": "(1.33,)", "output": "0.33000000000000007", "seed": true }, { "input": "(123.456,)", "output": "0.45600000000000307", "seed": true }, { "input": "(2.0070718025263945,)", "output": "0.007071802526...
ok
896
1
3
HumanEval/2
humaneval
truncate_number
0.06
[ { "input": "('',)", "output": "[]", "seed": true }, { "input": "('asdfgh',)", "output": "['a', 'as', 'asd', 'asdf', 'asdfg', 'asdfgh']", "seed": true }, { "input": "('WWW',)", "output": "['W', 'WW', 'WWW']", "seed": true }, { "input": "('asdfdh',)", "output": ...
ok
878
5
3
HumanEval/14
humaneval
all_prefixes
0.09
[ { "input": "('', 'x')", "output": "0", "seed": true }, { "input": "('xyxyxyx', 'x')", "output": "4", "seed": true }, { "input": "('cacacacac', 'cac')", "output": "4", "seed": true }, { "input": "('john doe', 'john')", "output": "1", "seed": true }, { ...
ok
868
7
4
HumanEval/18
humaneval
how_many_times
0.09
[ { "input": "('',)", "output": "''", "seed": true }, { "input": "('x',)", "output": "'x'", "seed": true }, { "input": "('xyz',)", "output": "'xyzyx'", "seed": true }, { "input": "('xyx',)", "output": "'xyx'", "seed": true }, { "input": "('jerry',)",...
ok
1,014
8
5
HumanEval/10
humaneval
make_palindrome
0.1
[ { "input": "('111000', '101010')", "output": "'010010'", "seed": true }, { "input": "('1', '1')", "output": "'0'", "seed": true }, { "input": "('0101', '0000')", "output": "'0101'", "seed": true }, { "input": "('u', '1')", "output": "'1'", "seed": false ...
ok
1,037
6
3
HumanEval/11
humaneval
string_xor
0.11
[ { "input": "([],)", "output": "False", "seed": true }, { "input": "([1, 2, -3, 1, 2, -3],)", "output": "False", "seed": true }, { "input": "([1, 2, -4, 5, 6],)", "output": "True", "seed": true }, { "input": "([1, -1, 2, -2, 5, -5, 4, -4],)", "output": "False",...
ok
802
7
6
HumanEval/3
humaneval
below_zero
0.11
[ { "input": "([1.0, 2.0, 3.0],)", "output": "0.6666666666666666", "seed": true }, { "input": "([1.0, 2.0, 3.0, 4.0],)", "output": "1.0", "seed": true }, { "input": "([1.0, 2.0, 3.0, 4.0, 5.0],)", "output": "1.2", "seed": true }, { "input": "([-96.83191575692749, 2....
ok
911
3
3
HumanEval/4
humaneval
mean_absolute_deviation
0.11
[ { "input": "([], 'john')", "output": "[]", "seed": true }, { "input": "(['xxx', 'asd', 'xxy', 'john doe', 'xxxAAA', 'xxx'], 'xxx')", "output": "['xxx', 'xxxAAA', 'xxx']", "seed": true }, { "input": "(['xxx', 'asd', 'aaaxxy', 'john doe', 'xxxAAA', 'xxx'], 'xx')", "output": "['...
ok
981
2
4
HumanEval/7
humaneval
filter_by_substring
0.12
[ { "input": "([2.0, 49.9],)", "output": "[0.0, 1.0]", "seed": true }, { "input": "([100.0, 49.9],)", "output": "[1.0, 0.0]", "seed": true }, { "input": "([1.0, 2.0, 3.0, 4.0, 5.0],)", "output": "[0.0, 0.25, 0.5, 0.75, 1.0]", "seed": true }, { "input": "([2.0, 1.0, ...
ok
899
5
5
HumanEval/21
humaneval
rescale_to_unit
0.12
[ { "input": "('',)", "output": "0", "seed": true }, { "input": "('x',)", "output": "1", "seed": true }, { "input": "('asdasnakj',)", "output": "9", "seed": true }, { "input": "('u',)", "output": "1", "seed": false }, { "input": "('NDj',)", "outp...
ok
937
1
3
HumanEval/23
humaneval
strlen
0.07
[ { "input": "([], 7)", "output": "[]", "seed": true }, { "input": "([5, 6, 3, 2], 8)", "output": "[5, 8, 6, 8, 3, 8, 2]", "seed": true }, { "input": "([2, 2, 2], 2)", "output": "[2, 2, 2, 2, 2]", "seed": true }, { "input": "([1, 6, 3, 2], 8)", "output": "[1, 8,...
ok
1,069
9
3
HumanEval/5
humaneval
intersperse
0.13
[ { "input": "([],)", "output": "(0, 1)", "seed": true }, { "input": "([1, 1, 1],)", "output": "(3, 1)", "seed": true }, { "input": "([100, 0],)", "output": "(100, 0)", "seed": true }, { "input": "([3, 5, 7],)", "output": "(15, 105)", "seed": true }, { ...
ok
1,406
7
5
HumanEval/8
humaneval
sum_product
0.13
[ { "input": "('',)", "output": "''", "seed": true }, { "input": "('Hello!',)", "output": "'hELLO!'", "seed": true }, { "input": "('These violent delights have violent ends',)", "output": "'tHESE VIOLENT DELIGHTS HAVE VIOLENT ENDS'", "seed": true }, { "input": "('He...
ok
736
1
3
HumanEval/27
humaneval
flip_case
0.05
[ { "input": "([],)", "output": "None", "seed": true }, { "input": "(['x', 'y', 'z'],)", "output": "'x'", "seed": true }, { "input": "(['x', 'yyy', 'zzzz', 'www', 'kkkk', 'abc'],)", "output": "'zzzz'", "seed": true }, { "input": "(['x', 'y', 'c'],)", "output": "...
ok
1,589
8
3
HumanEval/12
humaneval
longest
0.15
[ { "input": "([],)", "output": "[]", "seed": true }, { "input": "([1, 2, 3, 4],)", "output": "[1, 2, 3, 4]", "seed": true }, { "input": "([4, 3, 2, 1],)", "output": "[4, 4, 4, 4]", "seed": true }, { "input": "([3, 2, 3, 100, 3],)", "output": "[3, 3, 3, 100, 100...
ok
1,156
10
4
HumanEval/9
humaneval
rolling_max
0.16
[ { "input": "([1.0, 2.0, 3.9, 4.0, 5.0, 2.2], 0.3)", "output": "True", "seed": true }, { "input": "([1.0, 2.0, 3.9, 4.0, 5.0, 2.2], 0.05)", "output": "False", "seed": true }, { "input": "([1.0, 2.0, 5.9, 4.0, 5.0], 0.95)", "output": "True", "seed": true }, { "input...
ok
722
10
7
HumanEval/0
humaneval
has_close_elements
0.17
[ { "input": "('(()()) ((())) () ((())()())',)", "output": "[2, 3, 1, 3]", "seed": true }, { "input": "('() (()) ((())) (((())))',)", "output": "[1, 2, 3, 4]", "seed": true }, { "input": "('(()(())((())))',)", "output": "[4]", "seed": true }, { "input": "('() (()) (...
ok
846
14
3
HumanEval/6
humaneval
parse_nested_parens
0.2
[ { "input": "('(()()) ((())) () ((())()())',)", "output": "['(()())', '((()))', '()', '((())()())']", "seed": true }, { "input": "('() (()) ((())) (((())))',)", "output": "['()', '(())', '((()))', '(((())))']", "seed": true }, { "input": "('(()(())((())))',)", "output": "['(()...
ok
785
18
4
HumanEval/1
humaneval
separate_paren_groups
0.21
[ { "input": "([],)", "output": "[]", "seed": true }, { "input": "([4, {}, [], 23.2, 9, 'adasd'],)", "output": "[4, 9]", "seed": true }, { "input": "([3, 'c', 3, 3, 'a', 'b'],)", "output": "[3, 3, 3]", "seed": true }, { "input": "([4, {}, [], 23.2, 12, 'adasd'],)", ...
ok
1,166
2
3
HumanEval/22
humaneval
filter_integers
0.16
[ { "input": "([1, 2, 3],)", "output": "[1, 2, 3]", "seed": true }, { "input": "([5, 3, -5, 2, -3, 3, 9, 0, 123, 1, -10],)", "output": "[1, 3, -5, 2, -3, 3, 5, 0, 123, 9, -10]", "seed": true }, { "input": "([5, 8, -12, 4, 23, 2, 3, 11, 12, -10],)", "output": "[-10, 8, -12, 3, 2...
ok
693
3
7
HumanEval/33
humaneval
sort_third
0.1
[ { "input": "([-1, -2, 4, 5, 6],)", "output": "[4, 5, 6]", "seed": true }, { "input": "([5, 3, -5, 2, 3, 3, 9, 0, 123, 1, -10],)", "output": "[5, 3, 2, 3, 3, 9, 123, 1]", "seed": true }, { "input": "([-1, -2],)", "output": "[]", "seed": true }, { "input": "([],)", ...
ok
1,058
2
4
HumanEval/30
humaneval
get_positive
0.12
[ { "input": "([],)", "output": "''", "seed": true }, { "input": "(['x', 'y', 'z'],)", "output": "'xyz'", "seed": true }, { "input": "(['x', 'y', 'z', 'w', 'k'],)", "output": "'xyzwk'", "seed": true }, { "input": "(['x', 'y', 'c'],)", "output": "'xyc'", "see...
ok
1,776
1
3
HumanEval/28
humaneval
concatenate
0.13
[ { "input": "([1, 2, 3],)", "output": "3", "seed": true }, { "input": "([5, 3, -5, 2, -3, 3, 9, 0, 124, 1, -10],)", "output": "124", "seed": true }, { "input": "([5, 3, -5, 2, -3, 3, 9, 0, 124, 4, -10],)", "output": "124", "seed": false }, { "input": "([-968, 2, 3]...
ok
926
7
2
HumanEval/35
humaneval
max_element
0.11
[ { "input": "([], 'john')", "output": "[]", "seed": true }, { "input": "(['xxx', 'asd', 'xxy', 'john doe', 'xxxAAA', 'xxx'], 'xxx')", "output": "['xxx', 'xxxAAA', 'xxx']", "seed": true }, { "input": "(['xxx', 'asd', 'xxy', 'xxxAAA', 'john doe', 'xxx'], 'txx')", "output": "[]",...
ok
1,318
2
2
HumanEval/29
humaneval
filter_by_prefix
0.13
[ { "input": "([],)", "output": "[]", "seed": true }, { "input": "([1, 2, 3, 4],)", "output": "[1, 2, 3, 4]", "seed": true }, { "input": "([1, 2, 3, 2, 4, 3, 5],)", "output": "[1, 4, 5]", "seed": true }, { "input": "([2],)", "output": "[2]", "seed": false ...
ok
1,128
5
3
HumanEval/26
humaneval
remove_duplicates
0.15
[ { "input": "([5, 3, 5, 2, 3, 3, 9, 0, 123],)", "output": "[0, 2, 3, 5, 9, 123]", "seed": true }, { "input": "([1, 3, 5, 2, 3, 3, 9, 0, 123],)", "output": "[0, 1, 2, 3, 5, 9, 123]", "seed": false }, { "input": "([7, 3, 5, 2, 3, 3, 9, 0, 123],)", "output": "[0, 2, 3, 5, 7, 9, 1...
ok
873
1
1
HumanEval/34
humaneval
unique
0.13
[ { "input": "(2,)", "output": "4", "seed": true }, { "input": "(3,)", "output": "9", "seed": true }, { "input": "(4,)", "output": "16", "seed": true }, { "input": "(8,)", "output": "64", "seed": true }, { "input": "(10,)", "output": "100", "...
ok
2,129
1
5
HumanEval/41
humaneval
car_race_collision
0.1
[ { "input": "([1, 3, 5, 0],)", "output": "False", "seed": true }, { "input": "([1, 3, 5, -1],)", "output": "False", "seed": true }, { "input": "([1, 3, -2, 1],)", "output": "True", "seed": true }, { "input": "([1, 2, 3, 7],)", "output": "False", "seed": tru...
ok
831
9
9
HumanEval/40
humaneval
triples_sum_to_zero
0.13
[ { "input": "('',)", "output": "True", "seed": true }, { "input": "('aba',)", "output": "True", "seed": true }, { "input": "('aaaaa',)", "output": "True", "seed": true }, { "input": "('zbcd',)", "output": "False", "seed": true }, { "input": "('xywyx...
ok
837
5
7
HumanEval/48
humaneval
is_palindrome
0.05
[ { "input": "(5, 3)", "output": "7.5", "seed": true }, { "input": "(2, 2)", "output": "2.0", "seed": true }, { "input": "(10, 8)", "output": "40.0", "seed": true }, { "input": "(4, 2)", "output": "4.0", "seed": false }, { "input": "(133, 3)", "o...
ok
1,160
1
3
HumanEval/45
humaneval
triangle_area
0.06
[ { "input": "([1, 3, 5, 0],)", "output": "False", "seed": true }, { "input": "([1, 3, -2, 1],)", "output": "False", "seed": true }, { "input": "([1, 2, 3, 7],)", "output": "False", "seed": true }, { "input": "([2, 4, -5, 3, 5, 7],)", "output": "True", "seed...
ok
777
7
9
HumanEval/43
humaneval
pairs_sum_to_zero
0.09
[ { "input": "('',)", "output": "''", "seed": true }, { "input": "('abcdef\\nghijklm',)", "output": "'bcdf\\nghjklm'", "seed": true }, { "input": "('fedcba',)", "output": "'fdcb'", "seed": true }, { "input": "('eeeee',)", "output": "''", "seed": true }, ...
ok
778
2
7
HumanEval/51
humaneval
remove_vowels
0.06
[ { "input": "([1.0, 2.0, 3.9, 4.0, 5.0, 2.2],)", "output": "(3.9, 4.0)", "seed": true }, { "input": "([1.0, 2.0, 5.9, 4.0, 5.0],)", "output": "(5.0, 5.9)", "seed": true }, { "input": "([1.0, 2.0, 3.0, 4.0, 5.0, 2.2],)", "output": "(2.0, 2.2)", "seed": true }, { "in...
ok
736
18
5
HumanEval/20
humaneval
find_closest_elements
0.31
[ { "input": "([1, 2, 3],)", "output": "[1, 2, 3]", "seed": true }, { "input": "([5, 3, -5, 2, -3, 3, 9, 0, 123, 1, -10],)", "output": "[-10, 3, -5, 2, -3, 3, 5, 0, 9, 1, 123]", "seed": true }, { "input": "([5, 8, -12, 4, 23, 2, 3, 11, 12, -10],)", "output": "[-12, 8, 3, 4, 5, ...
ok
790
11
3
HumanEval/37
humaneval
sort_even
0.17
[ { "input": "(0, 1)", "output": "1", "seed": true }, { "input": "(1, 0)", "output": "1", "seed": true }, { "input": "(2, 3)", "output": "5", "seed": true }, { "input": "(5, 7)", "output": "12", "seed": true }, { "input": "(7, 5)", "output": "12"...
ok
1,157
1
5
HumanEval/53
humaneval
add
0.06
[ { "input": "([1, 2, 4, 10], 100)", "output": "True", "seed": true }, { "input": "([1, 20, 4, 10], 21)", "output": "True", "seed": true }, { "input": "([1, 20, 4, 10], 22)", "output": "True", "seed": true }, { "input": "([1, 8, 4, 10], 11)", "output": "True", ...
ok
816
5
6
HumanEval/52
humaneval
below_threshold
0.09
[ { "input": "([],)", "output": "[]", "seed": true }, { "input": "([3, 2, 1],)", "output": "[4, 3, 2]", "seed": true }, { "input": "([5, 2, 5, 2, 3, 3, 9, 0, 123],)", "output": "[6, 3, 6, 3, 4, 4, 10, 1, 124]", "seed": true }, { "input": "([3, 2, 4],)", "output"...
ok
1,148
2
3
HumanEval/42
humaneval
incr_list
0.14
[ { "input": "([3, 1, 2, 4, 5],)", "output": "3", "seed": true }, { "input": "([-10, 4, 6, 1000, 10, 20],)", "output": "8.0", "seed": true }, { "input": "([5],)", "output": "5", "seed": true }, { "input": "([6, 5],)", "output": "5.5", "seed": true }, { ...
ok
892
4
5
HumanEval/47
humaneval
median
0.11
[ { "input": "('eabcdzzzz', 'dddzzzzzzzddeddabc')", "output": "True", "seed": true }, { "input": "('abcd', 'dddddddabc')", "output": "True", "seed": true }, { "input": "('dddddddabc', 'abcd')", "output": "True", "seed": true }, { "input": "('eabcd', 'dddddddabc')", ...
ok
750
1
7
HumanEval/54
humaneval
same_chars
0.07
[ { "input": "([1, 2, 4, 10],)", "output": "True", "seed": true }, { "input": "([1, 2, 4, 20],)", "output": "True", "seed": true }, { "input": "([1, 20, 4, 10],)", "output": "False", "seed": true }, { "input": "([4, 1, 0, -10],)", "output": "True", "seed": t...
ok
777
3
8
HumanEval/57
humaneval
monotonic
0.07
[ { "input": "('<>',)", "output": "True", "seed": true }, { "input": "('<<><>>',)", "output": "True", "seed": true }, { "input": "('<><><<><>><>',)", "output": "True", "seed": true }, { "input": "('<><><<<><><>><>><<><><<>>>',)", "output": "True", "seed": tr...
ok
943
10
12
HumanEval/56
humaneval
correct_bracketing
0.08
[ { "input": "(2,)", "output": "[2]", "seed": true }, { "input": "(4,)", "output": "[2, 2]", "seed": true }, { "input": "(8,)", "output": "[2, 2, 2]", "seed": true }, { "input": "(6,)", "output": "[2, 3]", "seed": false }, { "input": "(130,)", "o...
ok
4,455
14
3
HumanEval/25
humaneval
factorize
0.28
[ { "input": "('()',)", "output": "True", "seed": true }, { "input": "('(()())',)", "output": "True", "seed": true }, { "input": "('()()(()())()',)", "output": "True", "seed": true }, { "input": "('()()((()()())())(()()(()))',)", "output": "True", "seed": tr...
ok
943
10
12
HumanEval/61
humaneval
correct_bracketing
0.12
[ { "input": "(100, 2)", "output": "'001'", "seed": true }, { "input": "(12, 2)", "output": "'12'", "seed": true }, { "input": "(97, 8)", "output": "'79'", "seed": true }, { "input": "(12, 1)", "output": "'21'", "seed": true }, { "input": "(11, 101)"...
ok
1,075
4
5
HumanEval/65
humaneval
circular_shift
0.1
[ { "input": "('abcde',)", "output": "2", "seed": true }, { "input": "('Alone',)", "output": "3", "seed": true }, { "input": "('key',)", "output": "2", "seed": true }, { "input": "('bye',)", "output": "1", "seed": true }, { "input": "('keY',)", "...
ok
868
7
7
HumanEval/64
humaneval
vowels_count
0.11
[ { "input": "('5 apples and 6 oranges', 19)", "output": "8", "seed": true }, { "input": "('5 apples and 6 oranges', 21)", "output": "10", "seed": true }, { "input": "('0 apples and 1 oranges', 3)", "output": "2", "seed": true }, { "input": "('1 apples and 0 oranges...
ok
764
7
7
HumanEval/67
humaneval
fruit_distribution
0.1
[ { "input": "('',)", "output": "0", "seed": true }, { "input": "('abAB',)", "output": "131", "seed": true }, { "input": "('abcCd',)", "output": "67", "seed": true }, { "input": "('helloE',)", "output": "69", "seed": true }, { "input": "('woArBld',)"...
ok
708
3
8
HumanEval/66
humaneval
digitSum
0.1
[ { "input": "([3, 1, 2, 4, 5],)", "output": "[1, 4, 12, 20]", "seed": true }, { "input": "([1, 2, 3],)", "output": "[2, 6]", "seed": true }, { "input": "([3, 2, 1],)", "output": "[2, 2]", "seed": true }, { "input": "([3, 2, 1, 0, 4],)", "output": "[2, 2, 0, 16]...
ok
1,071
2
5
HumanEval/62
humaneval
derivative
0.13
[ { "input": "([1, 4, 3, 34, 653, 2, 5], [5, 7, 1, 5, 9, 653, 121])", "output": "[1, 5, 653]", "seed": true }, { "input": "([5, 3, 2, 8], [3, 2])", "output": "[2, 3]", "seed": true }, { "input": "([4, 3, 2, 8], [3, 2, 4])", "output": "[2, 3, 4]", "seed": true }, { "...
ok
812
9
4
HumanEval/58
humaneval
common
0.17
[ { "input": "([4, 2, 3],)", "output": "[2, 1]", "seed": true }, { "input": "([1, 2, 3],)", "output": "[2, 1]", "seed": true }, { "input": "([],)", "output": "[]", "seed": true }, { "input": "([5, 0, 3, 0, 4, 2],)", "output": "[0, 1]", "seed": true }, { ...
ok
867
5
8
HumanEval/68
humaneval
pluck
0.13
[ { "input": "(1,)", "output": "1", "seed": true }, { "input": "(6,)", "output": "21", "seed": true }, { "input": "(11,)", "output": "66", "seed": true }, { "input": "(30,)", "output": "465", "seed": true }, { "input": "(100,)", "output": "5050",...
ok
1,973
1
5
HumanEval/60
humaneval
sum_to_n
0.21
[ { "input": "(3, 4, 5)", "output": "6.0", "seed": true }, { "input": "(1, 2, 10)", "output": "-1", "seed": true }, { "input": "(4, 8, 5)", "output": "8.18", "seed": true }, { "input": "(2, 2, 2)", "output": "1.73", "seed": true }, { "input": "(1, 2,...
ok
776
6
9
HumanEval/71
humaneval
triangle_area
0.08
[ { "input": "([1, 2, 3, 5, 4, 7, 9, 6],)", "output": "4", "seed": true }, { "input": "([1, 2, 3, 4, 3, 2, 2],)", "output": "1", "seed": true }, { "input": "([1, 4, 2],)", "output": "1", "seed": true }, { "input": "([1, 4, 4, 2],)", "output": "1", "seed": tr...
ok
949
7
8
HumanEval/73
humaneval
smallest_change
0.09
[ { "input": "([3, 2, 3], 9)", "output": "True", "seed": true }, { "input": "([1, 2], 5)", "output": "False", "seed": true }, { "input": "([3], 5)", "output": "True", "seed": true }, { "input": "([3, 2, 3], 1)", "output": "False", "seed": true }, { "...
ok
931
10
6
HumanEval/72
humaneval
will_it_fly
0.11
[ { "input": "([], [])", "output": "[]", "seed": true }, { "input": "(['hi', 'admin'], ['hi', 'hi'])", "output": "['hi', 'hi']", "seed": true }, { "input": "(['hi', 'admin'], ['hi', 'hi', 'admin', 'project'])", "output": "['hi', 'admin']", "seed": true }, { "input":...
ok
1,162
11
9
HumanEval/74
humaneval
total_match
0.13
[ { "input": "([1, 2, 3, 4],)", "output": "[1, 4, 2, 3]", "seed": true }, { "input": "([5, 6, 7, 8, 9],)", "output": "[5, 9, 6, 8, 7]", "seed": true }, { "input": "([1, 2, 3, 4, 5],)", "output": "[1, 5, 2, 4, 3]", "seed": true }, { "input": "([5, 6, 7, 8, 9, 1],)", ...
ok
846
7
9
HumanEval/70
humaneval
strange_sort_list
0.16
[ { "input": "(0,)", "output": "'db0db'", "seed": true }, { "input": "(32,)", "output": "'db100000db'", "seed": true }, { "input": "(103,)", "output": "'db1100111db'", "seed": true }, { "input": "(15,)", "output": "'db1111db'", "seed": true }, { "inp...
ok
1,952
1
4
HumanEval/79
humaneval
decimal_to_binary
0.07
[ { "input": "('a',)", "output": "False", "seed": true }, { "input": "('aa',)", "output": "False", "seed": true }, { "input": "('abcd',)", "output": "True", "seed": true }, { "input": "('aabb',)", "output": "False", "seed": true }, { "input": "('adb'...
ok
899
7
8
HumanEval/80
humaneval
is_happy
0.06
[ { "input": "(1,)", "output": "True", "seed": true }, { "input": "(2,)", "output": "False", "seed": true }, { "input": "(-1,)", "output": "True", "seed": true }, { "input": "(64,)", "output": "True", "seed": true }, { "input": "(180,)", "output"...
ok
1,658
2
9
HumanEval/77
humaneval
iscube
0.1
[ { "input": "('AB',)", "output": "1", "seed": true }, { "input": "('1077E',)", "output": "2", "seed": true }, { "input": "('ABED1A33',)", "output": "4", "seed": true }, { "input": "('2020',)", "output": "2", "seed": true }, { "input": "('123456789AB...
ok
850
8
7
HumanEval/78
humaneval
hex_key
0.12
[ { "input": "('Hello',)", "output": "True", "seed": true }, { "input": "('abcdcba',)", "output": "True", "seed": true }, { "input": "('kittens',)", "output": "True", "seed": true }, { "input": "('orange',)", "output": "False", "seed": true }, { "inp...
ok
799
8
16
HumanEval/82
humaneval
prime_length
0.05
[ { "input": "('Hi',)", "output": "'Hi'", "seed": true }, { "input": "('hello',)", "output": "'ehllo'", "seed": true }, { "input": "('number',)", "output": "'bemnru'", "seed": true }, { "input": "('abcd',)", "output": "'abcd'", "seed": true }, { "inp...
ok
727
2
7
HumanEval/86
humaneval
anti_shuffle
0.08
[ { "input": "([4.0, 3, 1.7, 2, 3.5],)", "output": "['A+', 'B', 'C-', 'C', 'A-']", "seed": true }, { "input": "([1.2],)", "output": "['D+']", "seed": true }, { "input": "([0.5],)", "output": "['D-']", "seed": true }, { "input": "([0.0],)", "output": "['E']", ...
ok
879
41
6
HumanEval/81
humaneval
numerical_letter_grade
0.15
[ { "input": "([4, 88],)", "output": "88", "seed": true }, { "input": "([4, 5, 6, 7, 2, 122],)", "output": "122", "seed": true }, { "input": "([4, 0, 6, 7],)", "output": "0", "seed": true }, { "input": "([4, 4, 6, 8],)", "output": "12", "seed": true }, {...
ok
873
2
4
HumanEval/85
humaneval
add
0.11
[ { "input": "(1000,)", "output": "'1'", "seed": true }, { "input": "(150,)", "output": "'110'", "seed": true }, { "input": "(147,)", "output": "'1100'", "seed": true }, { "input": "(333,)", "output": "'1001'", "seed": true }, { "input": "(963,)", ...
ok
3,188
1
5
HumanEval/84
humaneval
solve
0.16
[ { "input": "([1, 2, 3, 4, 5],)", "output": "2", "seed": true }, { "input": "([5, 1, 4, 3, 2],)", "output": "2", "seed": true }, { "input": "([],)", "output": "None", "seed": true }, { "input": "([1, 1],)", "output": "None", "seed": true }, { "input...
ok
1,022
2
6
HumanEval/90
humaneval
next_smallest
0.1
[ { "input": "('hi',)", "output": "'lm'", "seed": true }, { "input": "('asdfghjkl',)", "output": "'ewhjklnop'", "seed": true }, { "input": "('gf',)", "output": "'kj'", "seed": true }, { "input": "('et',)", "output": "'ix'", "seed": true }, { "input":...
ok
802
9
8
HumanEval/89
humaneval
encrypt
0.11
[ { "input": "('Hello world',)", "output": "0", "seed": true }, { "input": "('Is the sky blue?',)", "output": "0", "seed": true }, { "input": "('I love It !',)", "output": "1", "seed": true }, { "input": "('bIt',)", "output": "0", "seed": true }, { "...
ok
711
4
6
HumanEval/91
humaneval
is_bored
0.08
[ { "input": "([],)", "output": "[]", "seed": true }, { "input": "([5],)", "output": "[5]", "seed": true }, { "input": "([2, 4, 3, 0, 1, 5],)", "output": "[0, 1, 2, 3, 4, 5]", "seed": true }, { "input": "([2, 4, 3, 0, 1, 5, 6],)", "output": "[6, 5, 4, 3, 2, 1, 0...
ok
978
1
7
HumanEval/88
humaneval
sort_array
0.13
[ { "input": "(2, 3, 1)", "output": "True", "seed": true }, { "input": "(2.5, 2, 3)", "output": "False", "seed": true }, { "input": "(1.5, 5, 3.5)", "output": "False", "seed": true }, { "input": "(2, 6, 2)", "output": "False", "seed": true }, { "inpu...
ok
722
5
10
HumanEval/92
humaneval
any_int
0.05
[ { "input": "(1,)", "output": "1", "seed": true }, { "input": "(2,)", "output": "18", "seed": true }, { "input": "(3,)", "output": "180", "seed": true }, { "input": "(4,)", "output": "1800", "seed": true }, { "input": "(5,)", "output": "18000", ...
ok
2,410
2
5
HumanEval/83
humaneval
starts_one_ends
0.31
[ { "input": "('TEST',)", "output": "'tgst'", "seed": true }, { "input": "('Mudasir',)", "output": "'mWDCSKR'", "seed": true }, { "input": "('YES',)", "output": "'ygs'", "seed": true }, { "input": "('This is a message',)", "output": "'tHKS KS C MGSSCGG'", "s...
ok
751
8
5
HumanEval/93
humaneval
encode
0.11
[ { "input": "(148, 412)", "output": "16", "seed": true }, { "input": "(19, 28)", "output": "72", "seed": true }, { "input": "(2020, 1851)", "output": "0", "seed": true }, { "input": "(14, -15)", "output": "20", "seed": true }, { "input": "(76, 67)",...
ok
882
1
8
HumanEval/97
humaneval
multiply
0.05
[ { "input": "([[1, 2, 3, 4, 5, 6], [1, 2, 3, 4, 1, 6], [1, 2, 3, 4, 5, 1]], 1)", "output": "[(0, 0), (1, 4), (1, 0), (2, 5), (2, 0)]", "seed": true }, { "input": "([[1, 2, 3, 4, 5, 6], [1, 2, 3, 4, 5, 6], [1, 2, 3, 4, 5, 6], [1, 2, 3, 4, 5, 6], [1, 2, 3, 4, 5, 6], [1, 2, 3, 4, 5, 6]], 2)", "o...
ok
1,029
4
6
HumanEval/87
humaneval
get_row
0.34
[ { "input": "({'p': 'pineapple', 'b': 'banana'},)", "output": "True", "seed": true }, { "input": "({'p': 'pineapple', 'A': 'banana', 'B': 'banana'},)", "output": "False", "seed": true }, { "input": "({'p': 'pineapple', 5: 'banana', 'a': 'apple'},)", "output": "False", "see...
ok
1,005
24
7
HumanEval/95
humaneval
check_dict_case
0.14
[ { "input": "('aBCdEf',)", "output": "1", "seed": true }, { "input": "('abcdefg',)", "output": "0", "seed": true }, { "input": "('dBBE',)", "output": "0", "seed": true }, { "input": "('B',)", "output": "0", "seed": true }, { "input": "('U',)", "...
ok
924
7
7
HumanEval/98
humaneval
count_upper
0.09
[ { "input": "(12, 15)", "output": "14", "seed": true }, { "input": "(13, 12)", "output": "-1", "seed": true }, { "input": "(33, 12354)", "output": "12354", "seed": true }, { "input": "(5234, 5233)", "output": "-1", "seed": true }, { "input": "(6, 29...
ok
796
7
8
HumanEval/102
humaneval
choose_num
0.06
[ { "input": "([0, 3, 2, 1, 3, 5, 7, 4, 5, 5, 5, 2, 181, 32, 4, 32, 3, 2, 32, 324, 4, 3],)", "output": "10", "seed": true }, { "input": "([1, 0, 1, 8, 2, 4597, 2, 1, 3, 40, 1, 2, 1, 2, 4, 2, 5, 1],)", "output": "25", "seed": true }, { "input": "([1, 3, 1, 32, 5107, 34, 83278, 109, ...
ok
714
17
9
HumanEval/94
humaneval
skjkasdkd
0.28
[ { "input": "(6,)", "output": "False", "seed": true }, { "input": "(101,)", "output": "True", "seed": true }, { "input": "(11,)", "output": "True", "seed": true }, { "input": "(13441,)", "output": "True", "seed": true }, { "input": "(61,)", "out...
ok
1,735
7
9
HumanEval/31
humaneval
is_prime
1.06
[ { "input": "('Hi, my name is John',)", "output": "['Hi', 'my', 'name', 'is', 'John']", "seed": true }, { "input": "('One, two, three, four, five, six',)", "output": "['One', 'two', 'three', 'four', 'five', 'six']", "seed": true }, { "input": "('Hi, my name',)", "output": "['H...
ok
697
11
6
HumanEval/101
humaneval
words_string
0.17
[ { "input": "([2, 1, 1, 4, 5, 8, 2, 3],)", "output": "['Eight', 'Five', 'Four', 'Three', 'Two', 'Two', 'One', 'One']", "seed": true }, { "input": "([],)", "output": "[]", "seed": true }, { "input": "([1, -1, 55],)", "output": "['One']", "seed": true }, { "input": "...
ok
1,020
20
5
HumanEval/105
humaneval
by_length
0.17
[ { "input": "([15, 33, 1422, 1],)", "output": "[1, 15, 33]", "seed": true }, { "input": "([152, 323, 1422, 10],)", "output": "[]", "seed": true }, { "input": "([12345, 2033, 111, 151],)", "output": "[111, 151]", "seed": true }, { "input": "([135, 103, 31],)", "...
ok
1,088
8
4
HumanEval/104
humaneval
unique_digits
0.2
[ { "input": "([],)", "output": "0", "seed": true }, { "input": "([-1, -2, 0],)", "output": "0", "seed": true }, { "input": "([1, 1, 2, -2, 3, 4, 5],)", "output": "6", "seed": true }, { "input": "([1, 6, 9, -6, 0, 1, 5],)", "output": "5", "seed": true }, ...
ok
877
11
7
HumanEval/108
humaneval
count_nums
0.26
[ { "input": "([3, 4, 5, 1, 2],)", "output": "True", "seed": true }, { "input": "([3, 5, 10, 1, 2],)", "output": "True", "seed": true }, { "input": "([4, 3, 1, 2],)", "output": "False", "seed": true }, { "input": "([3, 5, 4, 1, 2],)", "output": "False", "see...
ok
951
12
5
HumanEval/109
humaneval
move_one_ball
0.11
[ { "input": "([1, 2, 3, 4], [1, 2, 3, 4])", "output": "'YES'", "seed": true }, { "input": "([1, 2, 3, 4], [1, 5, 3, 4])", "output": "'NO'", "seed": true }, { "input": "([1, 2, 3, 4], [2, 1, 4, 3])", "output": "'YES'", "seed": true }, { "input": "([5, 7, 3], [2, 6, ...
ok
720
15
7
HumanEval/110
humaneval
exchange
0.09
[ { "input": "('a b b a',)", "output": "{'a': 2, 'b': 2}", "seed": true }, { "input": "('a b c a b',)", "output": "{'a': 2, 'b': 2}", "seed": true }, { "input": "('a b c d g',)", "output": "{'a': 1, 'b': 1, 'c': 1, 'd': 1, 'g': 1}", "seed": true }, { "input": "('r t...
ok
821
16
7
HumanEval/111
humaneval
histogram
0.1
[ { "input": "([5, 5, 5, 5, 1],)", "output": "1", "seed": true }, { "input": "([4, 1, 4, 1, 4, 4],)", "output": "4", "seed": true }, { "input": "([3, 3],)", "output": "-1", "seed": true }, { "input": "([8, 8, 8, 8, 8, 8, 8, 8],)", "output": "8", "seed": true...
ok
756
11
25
HumanEval/69
humaneval
search
1.52
[ { "input": "('abcde', 'ae')", "output": "('bcd', False)", "seed": true }, { "input": "('abcdef', 'b')", "output": "('acdef', False)", "seed": true }, { "input": "('abcdedcba', 'ab')", "output": "('cdedc', True)", "seed": true }, { "input": "('dwik', 'w')", "ou...
ok
799
3
9
HumanEval/112
humaneval
reverse_delete
0.1
[ { "input": "([2, 3, 4, 1, 2, 4],)", "output": "1", "seed": true }, { "input": "([-1, -2, -3],)", "output": "-6", "seed": true }, { "input": "([-1, -2, -3, 2, -10],)", "output": "-14", "seed": true }, { "input": "([-9999999999999999],)", "output": "-99999999999...
ok
814
15
12
HumanEval/114
humaneval
minSubArraySum
0.12
[ { "input": "(3, 5)", "output": "3", "seed": true }, { "input": "(1101, 101)", "output": "2", "seed": true }, { "input": "(0, 101)", "output": "1", "seed": true }, { "input": "(3, 11)", "output": "8", "seed": true }, { "input": "(100, 101)", "ou...
ok
925
5
7
HumanEval/49
humaneval
modp
1.96
[ { "input": "([[0, 0, 1, 0], [0, 1, 0, 0], [1, 1, 1, 1]], 1)", "output": "6", "seed": true }, { "input": "([[0, 0, 1, 1], [0, 0, 0, 0], [1, 1, 1, 1], [0, 1, 1, 1]], 2)", "output": "5", "seed": true }, { "input": "([[0, 0, 0], [0, 0, 0]], 5)", "output": "0", "seed": true ...
ok
1,063
5
5
HumanEval/115
humaneval
max_fill
0.15
[ { "input": "([1, 5, 2, 3, 4],)", "output": "[1, 2, 4, 3, 5]", "seed": true }, { "input": "([-2, -3, -4, -5, -6],)", "output": "[-4, -2, -6, -5, -3]", "seed": true }, { "input": "([1, 0, 2, 3, 4],)", "output": "[0, 1, 2, 4, 3]", "seed": true }, { "input": "([],)", ...
ok
815
1
7
HumanEval/116
humaneval
sort_array
0.15
[ { "input": "(1, 5)", "output": "'0b11'", "seed": true }, { "input": "(7, 13)", "output": "'0b1010'", "seed": true }, { "input": "(964, 977)", "output": "'0b1111001010'", "seed": true }, { "input": "(996, 997)", "output": "'0b1111100100'", "seed": true },...
ok
789
7
12
HumanEval/103
humaneval
rounded_avg
1.25
[ { "input": "('yogurt',)", "output": "'u'", "seed": true }, { "input": "('full',)", "output": "'u'", "seed": true }, { "input": "('easy',)", "output": "''", "seed": true }, { "input": "('eAsy',)", "output": "''", "seed": true }, { "input": "('ali',)...
ok
764
10
13
HumanEval/118
humaneval
get_closest_vowel
0.07
[ { "input": "('Mary had a little lamb', 4)", "output": "['little']", "seed": true }, { "input": "('Mary had a little lamb', 3)", "output": "['Mary', 'lamb']", "seed": true }, { "input": "('simple white space', 2)", "output": "[]", "seed": true }, { "input": "('Hell...
ok
781
13
7
HumanEval/117
humaneval
select_words
0.14
[ { "input": "([-3, -4, 5], 3)", "output": "[-4, -3, 5]", "seed": true }, { "input": "([4, -4, 4], 2)", "output": "[4, 4]", "seed": true }, { "input": "([-3, 2, 1, 2, -1, -2, 1], 1)", "output": "[2]", "seed": true }, { "input": "([123, -123, 20, 0, 1, 2, -3], 3)", ...
ok
771
5
11
HumanEval/120
humaneval
maximum
0.11
[ { "input": "(['()(', ')'],)", "output": "'Yes'", "seed": true }, { "input": "([')', ')'],)", "output": "'No'", "seed": true }, { "input": "(['(()(())', '())())'],)", "output": "'No'", "seed": true }, { "input": "([')())', '(()()('],)", "output": "'Yes'", "...
ok
1,186
14
12
HumanEval/119
humaneval
match_parens
0.17
[ { "input": "([5, 8, 7, 1],)", "output": "12", "seed": true }, { "input": "([3, 3, 3, 3, 3],)", "output": "9", "seed": true }, { "input": "([30, 13, 24, 321],)", "output": "0", "seed": true }, { "input": "([5, 9],)", "output": "5", "seed": true }, { ...
ok
821
2
7
HumanEval/121
humaneval
solution
0.1