name
stringlengths
15
44
language
stringclasses
1 value
prompt
stringlengths
308
2.24k
doctests
stringclasses
1 value
original
stringlengths
130
159
prompt_terminology
stringclasses
1 value
tests
stringlengths
172
5.35k
stop_tokens
listlengths
1
1
HumanEval_0_has_close_elements
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Check if in given array list of numbers, are any two numbers closer to each other than // given threshold. // >>> hasCloseElements((new ArrayList<Float>...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_0_has_close_elements.py
reworded
} public static void main(String[] args) { assert(hasCloseElements((new ArrayList<Float>(Arrays.asList((float)1.0f, (float)2.0f, (float)3.9f, (float)4.0f, (float)5.0f, (float)2.2f))), (0.3f)) == (true)); assert(hasCloseElements((new ArrayList<Float>(Arrays.asList((float)1.0f, (float)2.0f, (float)3.9f, (...
[ "\n }\n" ]
HumanEval_1_separate_paren_groups
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Input to this function is a string containing multiple groups of nested parentheses. Your goal is to // separate those group into separate strings and retur...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_1_separate_paren_groups.py
reworded
} public static void main(String[] args) { assert(separateParenGroups(("(()()) ((())) () ((())()())")).equals((new ArrayList<String>(Arrays.asList((String)"(()())", (String)"((()))", (String)"()", (String)"((())()())"))))); assert(separateParenGroups(("() (()) ((())) (((())))")).equals((new ArrayList<St...
[ "\n }\n" ]
HumanEval_2_truncate_number
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given a positive floating point number, it can be decomposed into // and integer part (largest integer smaller than given number) and decimals // (lefto...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_2_truncate_number.py
reworded
} public static void main(String[] args) { assert(truncateNumber((3.5f)) == (0.5f)); assert(truncateNumber((1.25f)) == (0.25f)); assert(truncateNumber((123.0f)) == (0.0f)); } }
[ "\n }\n" ]
HumanEval_3_below_zero
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // You're given an array array list of deposit and withdrawal operations on a bank account that starts with // zero balance. Your task is to detect if at any p...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_3_below_zero.py
reworded
} public static void main(String[] args) { assert(belowZero((new ArrayList<Long>(Arrays.asList()))) == (false)); assert(belowZero((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)-3l, (long)1l, (long)2l, (long)-3l)))) == (false)); assert(belowZero((new ArrayList<Long>(Arrays.asList((long...
[ "\n }\n" ]
HumanEval_4_mean_absolute_deviation
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // For a given array list of input numbers, calculate Mean Absolute Deviation // around the mean of this dataset. // Mean Absolute Deviation is the average...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_4_mean_absolute_deviation.py
reworded
} public static void main(String[] args) { assert(meanAbsoluteDeviation((new ArrayList<Float>(Arrays.asList((float)1.0f, (float)2.0f)))) == (0.5f)); assert(meanAbsoluteDeviation((new ArrayList<Float>(Arrays.asList((float)1.0f, (float)2.0f, (float)3.0f, (float)4.0f)))) == (1.0f)); assert(meanAbsolute...
[ "\n }\n" ]
HumanEval_5_intersperse
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Insert a number 'delimeter' between every two consecutive elements of input array list `numbers' // >>> intersperse((new ArrayList<Long>(Arrays.asList())), ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_5_intersperse.py
reworded
} public static void main(String[] args) { assert(intersperse((new ArrayList<Long>(Arrays.asList())), (7l)).equals((new ArrayList<Long>(Arrays.asList())))); assert(intersperse((new ArrayList<Long>(Arrays.asList((long)5l, (long)6l, (long)3l, (long)2l))), (8l)).equals((new ArrayList<Long>(Arrays.asList((l...
[ "\n }\n" ]
HumanEval_6_parse_nested_parens
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Input to this function is a string represented multiple groups for nested parentheses separated by spaces. // For each of the group, output the deepest leve...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_6_parse_nested_parens.py
reworded
} public static void main(String[] args) { assert(parseNestedParens(("(()()) ((())) () ((())()())")).equals((new ArrayList<Long>(Arrays.asList((long)2l, (long)3l, (long)1l, (long)3l))))); assert(parseNestedParens(("() (()) ((())) (((())))")).equals((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, ...
[ "\n }\n" ]
HumanEval_7_filter_by_substring
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Filter an input array list of strings only for ones that contain given substring // >>> filterBySubstring((new ArrayList<String>(Arrays.asList())), ("a")) ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_7_filter_by_substring.py
reworded
} public static void main(String[] args) { assert(filterBySubstring((new ArrayList<String>(Arrays.asList())), ("john")).equals((new ArrayList<String>(Arrays.asList())))); assert(filterBySubstring((new ArrayList<String>(Arrays.asList((String)"xxx", (String)"asd", (String)"xxy", (String)"john doe", (Strin...
[ "\n }\n" ]
HumanEval_8_sum_product
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // For a given array list of integers, return a pair consisting of a sum and a product of all the integers in an array array list. // Empty sum should be equal...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_8_sum_product.py
reworded
} public static void main(String[] args) { assert(sumProduct((new ArrayList<Long>(Arrays.asList()))).equals((Pair.with(0l, 1l)))); assert(sumProduct((new ArrayList<Long>(Arrays.asList((long)1l, (long)1l, (long)1l)))).equals((Pair.with(3l, 1l)))); assert(sumProduct((new ArrayList<Long>(Arrays.asList(...
[ "\n }\n" ]
HumanEval_9_rolling_max
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // From a given array list of integers, generate an array array list of rolling maximum element found until given moment // in the sequence. // >>> rolling...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_9_rolling_max.py
reworded
} public static void main(String[] args) { assert(rollingMax((new ArrayList<Long>(Arrays.asList()))).equals((new ArrayList<Long>(Arrays.asList())))); assert(rollingMax((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l, (long)4l)))).equals((new ArrayList<Long>(Arrays.asList((long)1l, (long)...
[ "\n }\n" ]
HumanEval_10_make_palindrome
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Find the shortest palindrome that begins with a supplied string. // Algorithm idea is simple: // - Find the longest postfix of supplied string that is a...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_10_make_palindrome.py
reworded
} public static void main(String[] args) { assert(makePalindrome(("")).equals((""))); assert(makePalindrome(("x")).equals(("x"))); assert(makePalindrome(("xyz")).equals(("xyzyx"))); assert(makePalindrome(("xyx")).equals(("xyx"))); assert(makePalindrome(("jerry")).equals(("jerryrrej"))); ...
[ "\n }\n" ]
HumanEval_11_string_xor
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Input are two strings a and b consisting only of 1s and 0s. // Perform binary XOR on these inputs and return result also as a string. // >>> stringXor((...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_11_string_xor.py
reworded
} public static void main(String[] args) { assert(stringXor(("111000"), ("101010")).equals(("010010"))); assert(stringXor(("1"), ("1")).equals(("0"))); assert(stringXor(("0101"), ("0000")).equals(("0101"))); } }
[ "\n }\n" ]
HumanEval_12_longest
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Out of array list of strings, return the longest one. Return the first one in case of multiple // strings of the same length. Return null in case the input ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_12_longest.py
reworded
} public static void main(String[] args) { assert(longest((new ArrayList<String>(Arrays.asList()))).equals(Optional.empty())); assert(longest((new ArrayList<String>(Arrays.asList((String)"x", (String)"y", (String)"z")))).equals(Optional.of("x"))); assert(longest((new ArrayList<String>(Arrays.asList(...
[ "\n }\n" ]
HumanEval_13_greatest_common_divisor
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return a greatest common divisor of two integers a and b // >>> greatestCommonDivisor((3l), (5l)) // (1l) // >>> greatestCommonDivisor((25l), (15l))...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_13_greatest_common_divisor.py
reworded
} public static void main(String[] args) { assert(greatestCommonDivisor((3l), (7l)) == (1l)); assert(greatestCommonDivisor((10l), (15l)) == (5l)); assert(greatestCommonDivisor((49l), (14l)) == (7l)); assert(greatestCommonDivisor((144l), (60l)) == (12l)); } }
[ "\n }\n" ]
HumanEval_14_all_prefixes
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return array list of all prefixes from shortest to longest of the input string // >>> allPrefixes(("abc")) // (new ArrayList<String>(Arrays.asList((Stri...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_14_all_prefixes.py
reworded
} public static void main(String[] args) { assert(allPrefixes(("")).equals((new ArrayList<String>(Arrays.asList())))); assert(allPrefixes(("asdfgh")).equals((new ArrayList<String>(Arrays.asList((String)"a", (String)"as", (String)"asd", (String)"asdf", (String)"asdfg", (String)"asdfgh"))))); assert(a...
[ "\n }\n" ]
HumanEval_15_string_sequence
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return a string containing space-delimited numbers starting from 0 upto n inclusive. // >>> stringSequence((0l)) // ("0") // >>> stringSequence((5l)...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_15_string_sequence.py
reworded
} public static void main(String[] args) { assert(stringSequence((0l)).equals(("0"))); assert(stringSequence((3l)).equals(("0 1 2 3"))); assert(stringSequence((10l)).equals(("0 1 2 3 4 5 6 7 8 9 10"))); } }
[ "\n }\n" ]
HumanEval_16_count_distinct_characters
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given a string, find out how many distinct characters (regardless of case) does it consist of // >>> countDistinctCharacters(("xyzXYZ")) // (3l) // ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_16_count_distinct_characters.py
reworded
} public static void main(String[] args) { assert(countDistinctCharacters(("")) == (0l)); assert(countDistinctCharacters(("abcde")) == (5l)); assert(countDistinctCharacters(("abcdecadeCADE")) == (5l)); assert(countDistinctCharacters(("aaaaAAAAaaaa")) == (1l)); assert(countDistinctCharacters(...
[ "\n }\n" ]
HumanEval_17_parse_music
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Input to this function is a string representing musical notes in a special ASCII format. // Your task is to parse this string and return array list of integ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_17_parse_music.py
reworded
} public static void main(String[] args) { assert(parseMusic(("")).equals((new ArrayList<Long>(Arrays.asList())))); assert(parseMusic(("o o o o")).equals((new ArrayList<Long>(Arrays.asList((long)4l, (long)4l, (long)4l, (long)4l))))); assert(parseMusic((".| .| .| .|")).equals((new ArrayList<Long>(Arr...
[ "\n }\n" ]
HumanEval_18_how_many_times
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Find how many times a given substring can be found in the original string. Count overlaping cases. // >>> howManyTimes((""), ("a")) // (0l) // >>> h...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_18_how_many_times.py
reworded
} public static void main(String[] args) { assert(howManyTimes((""), ("x")) == (0l)); assert(howManyTimes(("xyxyxyx"), ("x")) == (4l)); assert(howManyTimes(("cacacacac"), ("cac")) == (4l)); assert(howManyTimes(("john doe"), ("john")) == (1l)); } }
[ "\n }\n" ]
HumanEval_19_sort_numbers
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Input is a space-delimited string of numberals from 'zero' to 'nine'. // Valid choices are 'zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'e...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_19_sort_numbers.py
reworded
} public static void main(String[] args) { assert(sortNumbers(("")).equals((""))); assert(sortNumbers(("three")).equals(("three"))); assert(sortNumbers(("three five nine")).equals(("three five nine"))); assert(sortNumbers(("five zero four seven nine eight")).equals(("zero four five seven eight n...
[ "\n }\n" ]
HumanEval_20_find_closest_elements
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // From a supplied array list of numbers (of length at least two) select and return two that are the closest to each // other and return them in order (smaller...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_20_find_closest_elements.py
reworded
} public static void main(String[] args) { assert(findClosestElements((new ArrayList<Float>(Arrays.asList((float)1.0f, (float)2.0f, (float)3.9f, (float)4.0f, (float)5.0f, (float)2.2f)))).equals((Pair.with(3.9f, 4.0f)))); assert(findClosestElements((new ArrayList<Float>(Arrays.asList((float)1.0f, (float)...
[ "\n }\n" ]
HumanEval_21_rescale_to_unit
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given array list of numbers (of at least two elements), apply a linear transform to that array list, // such that the smallest number will become 0 and the ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_21_rescale_to_unit.py
reworded
} public static void main(String[] args) { assert(rescaleToUnit((new ArrayList<Float>(Arrays.asList((float)2.0f, (float)49.9f)))).equals((new ArrayList<Float>(Arrays.asList((float)0.0f, (float)1.0f))))); assert(rescaleToUnit((new ArrayList<Float>(Arrays.asList((float)100.0f, (float)49.9f)))).equals((new...
[ "\n }\n" ]
HumanEval_22_filter_integers
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Filter given array list of any javathon values only for integers // >>> filterIntegers((new ArrayList<Object>(Arrays.asList((String)"a", (String)3.14f, (Str...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_22_filter_integers.py
reworded
} public static void main(String[] args) { assert(filterIntegers((new ArrayList<Object>(Arrays.asList()))).equals((new ArrayList<Long>(Arrays.asList())))); assert(filterIntegers((new ArrayList<Object>(Arrays.asList(4l, new HashMap<Long,Long>(Map.of()), new ArrayList<Long>(Arrays.asList()), 23.2f, 9l, "a...
[ "\n }\n" ]
HumanEval_23_strlen
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return length of given string // >>> stringLength(("")) // (0l) // >>> stringLength(("abc")) // (3l) public static long strlen(String string...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_23_strlen.py
reworded
} public static void main(String[] args) { assert(strlen(("")) == (0l)); assert(strlen(("x")) == (1l)); assert(strlen(("asdasnakj")) == (9l)); } }
[ "\n }\n" ]
HumanEval_24_largest_divisor
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // For a given number n, find the largest number that divides n evenly, smaller than n // >>> largestDivisor((15l)) // (5l) public static long largestD...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_24_largest_divisor.py
reworded
} public static void main(String[] args) { assert(largestDivisor((3l)) == (1l)); assert(largestDivisor((7l)) == (1l)); assert(largestDivisor((10l)) == (5l)); assert(largestDivisor((100l)) == (50l)); assert(largestDivisor((49l)) == (7l)); } }
[ "\n }\n" ]
HumanEval_25_factorize
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return array list of prime factors of given integer in the order from smallest to largest. // Each of the factors should be array listed number of times cor...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_25_factorize.py
reworded
} public static void main(String[] args) { assert(factorize((2l)).equals((new ArrayList<Long>(Arrays.asList((long)2l))))); assert(factorize((4l)).equals((new ArrayList<Long>(Arrays.asList((long)2l, (long)2l))))); assert(factorize((8l)).equals((new ArrayList<Long>(Arrays.asList((long)2l, (long)2l, (l...
[ "\n }\n" ]
HumanEval_26_remove_duplicates
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // From an array array list of integers, remove all elements that occur more than once. // Keep order of elements left the same as in the input. // >>> rem...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_26_remove_duplicates.py
reworded
} public static void main(String[] args) { assert(removeDuplicates((new ArrayList<Long>(Arrays.asList()))).equals((new ArrayList<Long>(Arrays.asList())))); assert(removeDuplicates((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l, (long)4l)))).equals((new ArrayList<Long>(Arrays.asList((lon...
[ "\n }\n" ]
HumanEval_27_flip_case
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // For a given string, flip lowercase characters to uppercase and uppercase to lowercase. // >>> flipCase(("Hello")) // ("hELLO") public static String ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_27_flip_case.py
reworded
} public static void main(String[] args) { assert(flipCase(("")).equals((""))); assert(flipCase(("Hello!")).equals(("hELLO!"))); assert(flipCase(("These violent delights have violent ends")).equals(("tHESE VIOLENT DELIGHTS HAVE VIOLENT ENDS"))); } }
[ "\n }\n" ]
HumanEval_28_concatenate
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Concatenate array list of strings into a single string // >>> concatenate((new ArrayList<String>(Arrays.asList()))) // ("") // >>> concatenate((new ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_28_concatenate.py
reworded
} public static void main(String[] args) { assert(concatenate((new ArrayList<String>(Arrays.asList()))).equals((""))); assert(concatenate((new ArrayList<String>(Arrays.asList((String)"x", (String)"y", (String)"z")))).equals(("xyz"))); assert(concatenate((new ArrayList<String>(Arrays.asList((String)"...
[ "\n }\n" ]
HumanEval_29_filter_by_prefix
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Filter an input array list of strings only for ones that start with a given prefix. // >>> filterByPrefix((new ArrayList<String>(Arrays.asList())), ("a")) ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_29_filter_by_prefix.py
reworded
} public static void main(String[] args) { assert(filterByPrefix((new ArrayList<String>(Arrays.asList())), ("john")).equals((new ArrayList<String>(Arrays.asList())))); assert(filterByPrefix((new ArrayList<String>(Arrays.asList((String)"xxx", (String)"asd", (String)"xxy", (String)"john doe", (String)"xxx...
[ "\n }\n" ]
HumanEval_30_get_positive
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return only positive numbers in the array list. // >>> getPositive((new ArrayList<Long>(Arrays.asList((long)-1l, (long)2l, (long)-4l, (long)5l, (long)6l))))...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_30_get_positive.py
reworded
} public static void main(String[] args) { assert(getPositive((new ArrayList<Long>(Arrays.asList((long)-1l, (long)-2l, (long)4l, (long)5l, (long)6l)))).equals((new ArrayList<Long>(Arrays.asList((long)4l, (long)5l, (long)6l))))); assert(getPositive((new ArrayList<Long>(Arrays.asList((long)5l, (long)3l, (...
[ "\n }\n" ]
HumanEval_31_is_prime
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return true if a given number is prime, and false otherwise. // >>> isPrime((6l)) // (false) // >>> isPrime((101l)) // (true) // >>> isPrime...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_31_is_prime.py
reworded
} public static void main(String[] args) { assert(isPrime((6l)) == (false)); assert(isPrime((101l)) == (true)); assert(isPrime((11l)) == (true)); assert(isPrime((13441l)) == (true)); assert(isPrime((61l)) == (true)); assert(isPrime((4l)) == (false)); assert(isPrime((1l)) == (false));...
[ "\n }\n" ]
HumanEval_33_sort_third
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // This function takes an array array list l and returns an array array list l' such that // l' is identical to l in the indicies that are not divisible by thr...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_33_sort_third.py
reworded
} public static void main(String[] args) { assert(sortThird((new ArrayList<Long>(Arrays.asList((long)5l, (long)6l, (long)3l, (long)4l, (long)8l, (long)9l, (long)2l)))).equals((new ArrayList<Long>(Arrays.asList((long)2l, (long)6l, (long)3l, (long)4l, (long)8l, (long)9l, (long)5l))))); assert(sortThird((n...
[ "\n }\n" ]
HumanEval_34_unique
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return sorted unique elements in an array array list // >>> unique((new ArrayList<Long>(Arrays.asList((long)5l, (long)3l, (long)5l, (long)2l, (long)3l, (lon...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_34_unique.py
reworded
} public static void main(String[] args) { assert(unique((new ArrayList<Long>(Arrays.asList((long)5l, (long)3l, (long)5l, (long)2l, (long)3l, (long)3l, (long)9l, (long)0l, (long)123l)))).equals((new ArrayList<Long>(Arrays.asList((long)0l, (long)2l, (long)3l, (long)5l, (long)9l, (long)123l))))); } }
[ "\n }\n" ]
HumanEval_35_max_element
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return maximum element in the array list. // >>> maxElement((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l)))) // (3l) // >>> maxEl...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_35_max_element.py
reworded
} public static void main(String[] args) { assert(maxElement((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l)))) == (3l)); assert(maxElement((new ArrayList<Long>(Arrays.asList((long)5l, (long)3l, (long)-5l, (long)2l, (long)-3l, (long)3l, (long)9l, (long)0l, (long)124l, (long)1l, (long)-1...
[ "\n }\n" ]
HumanEval_36_fizz_buzz
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return the number of times the digit 7 appears in integers less than n which are divisible by 11 or 13. // >>> fizzBuzz((50l)) // (0l) // >>> fizzBu...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_36_fizz_buzz.py
reworded
} public static void main(String[] args) { assert(fizzBuzz((50l)) == (0l)); assert(fizzBuzz((78l)) == (2l)); assert(fizzBuzz((79l)) == (3l)); assert(fizzBuzz((100l)) == (3l)); assert(fizzBuzz((200l)) == (6l)); assert(fizzBuzz((4000l)) == (192l)); assert(fizzBuzz((10000l)) == (639l));...
[ "\n }\n" ]
HumanEval_37_sort_even
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // This function takes an array array list l and returns an array array list l' such that // l' is identical to l in the odd indicies, while its values at the ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_37_sort_even.py
reworded
} public static void main(String[] args) { assert(sortEven((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l)))).equals((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l))))); assert(sortEven((new ArrayList<Long>(Arrays.asList((long)5l, (long)3l, (long)-5l, (long)2l, (long)-3...
[ "\n }\n" ]
HumanEval_39_prime_fib
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // prime_fib returns n-th number that is a Fibonacci number and it's also prime. // >>> primeFib((1l)) // (2l) // >>> primeFib((2l)) // (3l) //...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_39_prime_fib.py
reworded
} public static void main(String[] args) { assert(primeFib((1l)) == (2l)); assert(primeFib((2l)) == (3l)); assert(primeFib((3l)) == (5l)); assert(primeFib((4l)) == (13l)); assert(primeFib((5l)) == (89l)); assert(primeFib((6l)) == (233l)); assert(primeFib((7l)) == (1597l)); assert...
[ "\n }\n" ]
HumanEval_40_triples_sum_to_zero
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // triples_sum_to_zero takes an array array list of integers as an input. // it returns true if there are three distinct elements in the array list that //...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_40_triples_sum_to_zero.py
reworded
} public static void main(String[] args) { assert(triplesSumToZero((new ArrayList<Long>(Arrays.asList((long)1l, (long)3l, (long)5l, (long)0l)))) == (false)); assert(triplesSumToZero((new ArrayList<Long>(Arrays.asList((long)1l, (long)3l, (long)5l, (long)-1l)))) == (false)); assert(triplesSumToZero((n...
[ "\n }\n" ]
HumanEval_41_car_race_collision
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Imagine a road that's a perfectly straight infinitely long line. // n cars are driving left to right; simultaneously, a different set of n cars // are ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_41_car_race_collision.py
reworded
} public static void main(String[] args) { assert(carRaceCollision((2l)) == (4l)); assert(carRaceCollision((3l)) == (9l)); assert(carRaceCollision((4l)) == (16l)); assert(carRaceCollision((8l)) == (64l)); assert(carRaceCollision((10l)) == (100l)); } }
[ "\n }\n" ]
HumanEval_42_incr_list
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return array list with elements incremented by 1. // >>> incrList((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l)))) // (new ArrayList<...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_42_incr_list.py
reworded
} public static void main(String[] args) { assert(incrList((new ArrayList<Long>(Arrays.asList()))).equals((new ArrayList<Long>(Arrays.asList())))); assert(incrList((new ArrayList<Long>(Arrays.asList((long)3l, (long)2l, (long)1l)))).equals((new ArrayList<Long>(Arrays.asList((long)4l, (long)3l, (long)2l))...
[ "\n }\n" ]
HumanEval_43_pairs_sum_to_zero
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // pairs_sum_to_zero takes an array array list of integers as an input. // it returns true if there are two distinct elements in the array list that // sum...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_43_pairs_sum_to_zero.py
reworded
} public static void main(String[] args) { assert(pairsSumToZero((new ArrayList<Long>(Arrays.asList((long)1l, (long)3l, (long)5l, (long)0l)))) == (false)); assert(pairsSumToZero((new ArrayList<Long>(Arrays.asList((long)1l, (long)3l, (long)-2l, (long)1l)))) == (false)); assert(pairsSumToZero((new Arr...
[ "\n }\n" ]
HumanEval_44_change_base
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Change numerical base of input number x to base. // return string representation after the conversion. // base numbers are less than 10. // >>> chan...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_44_change_base.py
reworded
} public static void main(String[] args) { assert(changeBase((8l), (3l)).equals(("22"))); assert(changeBase((9l), (3l)).equals(("100"))); assert(changeBase((234l), (2l)).equals(("11101010"))); assert(changeBase((16l), (2l)).equals(("10000"))); assert(changeBase((8l), (2l)).equals(("1000")));...
[ "\n }\n" ]
HumanEval_45_triangle_area
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given length of a side and high return area for a triangle. // >>> triangleArea((5l), (3l)) // (7.5f) public static float triangleArea(long a, long ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_45_triangle_area.py
reworded
} public static void main(String[] args) { assert(triangleArea((5l), (3l)) == (7.5f)); assert(triangleArea((2l), (2l)) == (2.0f)); assert(triangleArea((10l), (8l)) == (40.0f)); } }
[ "\n }\n" ]
HumanEval_46_fib4
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // The Fib4 number sequence is a sequence similar to the Fibbonacci sequnece that's defined as follows: // fib4(0) -> 0 // fib4(1) -> 0 // fib4(2) -> 2...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_46_fib4.py
reworded
} public static void main(String[] args) { assert(fib4((5l)) == (4l)); assert(fib4((8l)) == (28l)); assert(fib4((10l)) == (104l)); assert(fib4((12l)) == (386l)); } }
[ "\n }\n" ]
HumanEval_47_median
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return median of elements in the array list l. // >>> median((new ArrayList<Long>(Arrays.asList((long)3l, (long)1l, (long)2l, (long)4l, (long)5l)))) // ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_47_median.py
reworded
} public static void main(String[] args) { assert(median((new ArrayList<Long>(Arrays.asList((long)3l, (long)1l, (long)2l, (long)4l, (long)5l)))) == (float)3l); assert(median((new ArrayList<Long>(Arrays.asList((long)-10l, (long)4l, (long)6l, (long)1000l, (long)10l, (long)20l)))) == (8.0f)); assert(me...
[ "\n }\n" ]
HumanEval_48_is_palindrome
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Checks if given string is a palindrome // >>> isPalindrome(("")) // (true) // >>> isPalindrome(("aba")) // (true) // >>> isPalindrome(("aaaa...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_48_is_palindrome.py
reworded
} public static void main(String[] args) { assert(isPalindrome(("")) == (true)); assert(isPalindrome(("aba")) == (true)); assert(isPalindrome(("aaaaa")) == (true)); assert(isPalindrome(("zbcd")) == (false)); assert(isPalindrome(("xywyx")) == (true)); assert(isPalindrome(("xywyz")) == (fa...
[ "\n }\n" ]
HumanEval_49_modp
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return 2^n modulo p (be aware of numerics). // >>> modp((3l), (5l)) // (3l) // >>> modp((1101l), (101l)) // (2l) // >>> modp((0l), (101l)) ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_49_modp.py
reworded
} public static void main(String[] args) { assert(modp((3l), (5l)) == (3l)); assert(modp((1101l), (101l)) == (2l)); assert(modp((0l), (101l)) == (1l)); assert(modp((3l), (11l)) == (8l)); assert(modp((100l), (101l)) == (1l)); assert(modp((30l), (5l)) == (4l)); assert(modp((31l), (5l))...
[ "\n }\n" ]
HumanEval_51_remove_vowels
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // remove_vowels is a function that takes string and returns string without vowels. // >>> removeVowels(("")) // ("") // >>> removeVowels(("abcdef")) ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_51_remove_vowels.py
reworded
} public static void main(String[] args) { assert(removeVowels(("")).equals((""))); assert(removeVowels(("abcdef\nghijklm")).equals(("bcdf\nghjklm"))); assert(removeVowels(("fedcba")).equals(("fdcb"))); assert(removeVowels(("eeeee")).equals((""))); assert(removeVowels(("acBAA")).equals(("cB"...
[ "\n }\n" ]
HumanEval_52_below_threshold
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return true if all numbers in the array list l are below threshold t. // >>> belowThreshold((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)4l,...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_52_below_threshold.py
reworded
} public static void main(String[] args) { assert(belowThreshold((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)4l, (long)10l))), (100l)) == (true)); assert(belowThreshold((new ArrayList<Long>(Arrays.asList((long)1l, (long)20l, (long)4l, (long)10l))), (5l)) == (false)); assert(belowThr...
[ "\n }\n" ]
HumanEval_53_add
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Add two numbers x and y // >>> add((2l), (3l)) // (5l) // >>> add((5l), (7l)) // (12l) public static long add(long x, long y) {
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_53_add.py
reworded
} public static void main(String[] args) { assert(add((0l), (1l)) == (1l)); assert(add((1l), (0l)) == (1l)); assert(add((2l), (3l)) == (5l)); assert(add((5l), (7l)) == (12l)); assert(add((7l), (5l)) == (12l)); } }
[ "\n }\n" ]
HumanEval_54_same_chars
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Check if two words have the same characters. // >>> sameChars(("eabcdzzzz"), ("dddzzzzzzzddeddabc")) // (true) // >>> sameChars(("abcd"), ("ddddddda...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_54_same_chars.py
reworded
} public static void main(String[] args) { assert(sameChars(("eabcdzzzz"), ("dddzzzzzzzddeddabc")) == (true)); assert(sameChars(("abcd"), ("dddddddabc")) == (true)); assert(sameChars(("dddddddabc"), ("abcd")) == (true)); assert(sameChars(("eabcd"), ("dddddddabc")) == (false)); assert(sameCha...
[ "\n }\n" ]
HumanEval_55_fib
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return n-th Fibonacci number. // >>> fib((10l)) // (55l) // >>> fib((1l)) // (1l) // >>> fib((8l)) // (21l) public static long fib(l...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_55_fib.py
reworded
} public static void main(String[] args) { assert(fib((10l)) == (55l)); assert(fib((1l)) == (1l)); assert(fib((8l)) == (21l)); assert(fib((11l)) == (89l)); assert(fib((12l)) == (144l)); } }
[ "\n }\n" ]
HumanEval_56_correct_bracketing
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // brackets is a string of "<" and ">". // return true if every opening bracket has a corresponding closing bracket. // >>> correctBracketing(("<")) //...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_56_correct_bracketing.py
reworded
} public static void main(String[] args) { assert(correctBracketing(("<>")) == (true)); assert(correctBracketing(("<<><>>")) == (true)); assert(correctBracketing(("<><><<><>><>")) == (true)); assert(correctBracketing(("<><><<<><><>><>><<><><<>>>")) == (true)); assert(correctBracketing(("<<<>...
[ "\n }\n" ]
HumanEval_57_monotonic
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return true is array list elements are monotonically increasing or decreasing. // >>> monotonic((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_57_monotonic.py
reworded
} public static void main(String[] args) { assert(monotonic((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)4l, (long)10l)))) == (true)); assert(monotonic((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)4l, (long)20l)))) == (true)); assert(monotonic((new ArrayList<Long>(Arr...
[ "\n }\n" ]
HumanEval_58_common
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return sorted unique common elements for two array lists. // >>> common((new ArrayList<Long>(Arrays.asList((long)1l, (long)4l, (long)3l, (long)34l, (long)65...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_58_common.py
reworded
} public static void main(String[] args) { assert(common((new ArrayList<Long>(Arrays.asList((long)1l, (long)4l, (long)3l, (long)34l, (long)653l, (long)2l, (long)5l))), (new ArrayList<Long>(Arrays.asList((long)5l, (long)7l, (long)1l, (long)5l, (long)9l, (long)653l, (long)121l)))).equals((new ArrayList<Long>(...
[ "\n }\n" ]
HumanEval_59_largest_prime_factor
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Return the largest prime factor of n. Assume n > 1 and is not a prime. // >>> largestPrimeFactor((13195l)) // (29l) // >>> largestPrimeFactor((2048l...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_59_largest_prime_factor.py
reworded
} public static void main(String[] args) { assert(largestPrimeFactor((15l)) == (5l)); assert(largestPrimeFactor((27l)) == (3l)); assert(largestPrimeFactor((63l)) == (7l)); assert(largestPrimeFactor((330l)) == (11l)); assert(largestPrimeFactor((13195l)) == (29l)); } }
[ "\n }\n" ]
HumanEval_60_sum_to_n
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // sum_to_n is a function that sums numbers from 1 to n. // >>> sumToN((30l)) // (465l) // >>> sumToN((100l)) // (5050l) // >>> sumToN((5l)) ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_60_sum_to_n.py
reworded
} public static void main(String[] args) { assert(sumToN((1l)) == (1l)); assert(sumToN((6l)) == (21l)); assert(sumToN((11l)) == (66l)); assert(sumToN((30l)) == (465l)); assert(sumToN((100l)) == (5050l)); } }
[ "\n }\n" ]
HumanEval_61_correct_bracketing
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // brackets is a string of "(" and ")". // return true if every opening bracket has a corresponding closing bracket. // >>> correctBracketing(("(")) //...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_61_correct_bracketing.py
reworded
} public static void main(String[] args) { assert(correctBracketing(("()")) == (true)); assert(correctBracketing(("(()())")) == (true)); assert(correctBracketing(("()()(()())()")) == (true)); assert(correctBracketing(("()()((()()())())(()()(()))")) == (true)); assert(correctBracketing(("((()...
[ "\n }\n" ]
HumanEval_62_derivative
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // xs represent coefficients of a polynomial. // xs[0] + xs[1] * x + xs[2] * x^2 + .... // Return derivative of this polynomial in the same form. // >>...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_62_derivative.py
reworded
} public static void main(String[] args) { assert(derivative((new ArrayList<Long>(Arrays.asList((long)3l, (long)1l, (long)2l, (long)4l, (long)5l)))).equals((new ArrayList<Long>(Arrays.asList((long)1l, (long)4l, (long)12l, (long)20l))))); assert(derivative((new ArrayList<Long>(Arrays.asList((long)1l, (lo...
[ "\n }\n" ]
HumanEval_63_fibfib
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // The FibFib number sequence is a sequence similar to the Fibbonacci sequnece that's defined as follows: // fibfib(0) == 0 // fibfib(1) == 0 // fibfib...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_63_fibfib.py
reworded
} public static void main(String[] args) { assert(fibfib((2l)) == (1l)); assert(fibfib((1l)) == (0l)); assert(fibfib((5l)) == (4l)); assert(fibfib((8l)) == (24l)); assert(fibfib((10l)) == (81l)); assert(fibfib((12l)) == (274l)); assert(fibfib((14l)) == (927l)); } }
[ "\n }\n" ]
HumanEval_64_vowels_count
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Write a function vowels_count which takes a string representing // a word as input and returns the number of vowels in the string. // Vowels in this cas...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_64_vowels_count.py
reworded
} public static void main(String[] args) { assert(vowelsCount(("abcde")) == (2l)); assert(vowelsCount(("Alone")) == (3l)); assert(vowelsCount(("key")) == (2l)); assert(vowelsCount(("bye")) == (1l)); assert(vowelsCount(("keY")) == (2l)); assert(vowelsCount(("bYe")) == (1l)); assert(vo...
[ "\n }\n" ]
HumanEval_65_circular_shift
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Circular shift the digits of the integer x, shift the digits right by shift // and return the result as a string. // If shift > number of digits, return...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_65_circular_shift.py
reworded
} public static void main(String[] args) { assert(circularShift((100l), (2l)).equals(("001"))); assert(circularShift((12l), (2l)).equals(("12"))); assert(circularShift((97l), (8l)).equals(("79"))); assert(circularShift((12l), (1l)).equals(("21"))); assert(circularShift((11l), (101l)).equals(...
[ "\n }\n" ]
HumanEval_66_digitSum
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Task // Write a function that takes a string as input and returns the sum of the upper characters only' // ASCII codes. // Examples: // >>> digi...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_66_digitSum.py
reworded
} public static void main(String[] args) { assert(digitSum(("")) == (0l)); assert(digitSum(("abAB")) == (131l)); assert(digitSum(("abcCd")) == (67l)); assert(digitSum(("helloE")) == (69l)); assert(digitSum(("woArBld")) == (131l)); assert(digitSum(("aAaaaXa")) == (153l)); assert(digit...
[ "\n }\n" ]
HumanEval_67_fruit_distribution
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // In this task, you will be given a string that represents a number of apples and oranges // that are distributed in a basket of fruit this basket contains ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_67_fruit_distribution.py
reworded
} public static void main(String[] args) { assert(fruitDistribution(("5 apples and 6 oranges"), (19l)) == (8l)); assert(fruitDistribution(("5 apples and 6 oranges"), (21l)) == (10l)); assert(fruitDistribution(("0 apples and 1 oranges"), (3l)) == (2l)); assert(fruitDistribution(("1 apples and 0 o...
[ "\n }\n" ]
HumanEval_68_pluck
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // "Given an array array list representing a branch of a tree that has non-negative integer nodes // your task is to pluck one of the nodes and return it. ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_68_pluck.py
reworded
} public static void main(String[] args) { assert(pluck((new ArrayList<Long>(Arrays.asList((long)4l, (long)2l, (long)3l)))).equals((new ArrayList<Long>(Arrays.asList((long)2l, (long)1l))))); assert(pluck((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l)))).equals((new ArrayList<Long>(Arra...
[ "\n }\n" ]
HumanEval_69_search
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // You are given a non-empty array list of positive integers. Return the greatest integer that is greater than // zero, and has a frequency greater than or eq...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_69_search.py
reworded
} public static void main(String[] args) { assert(search((new ArrayList<Long>(Arrays.asList((long)5l, (long)5l, (long)5l, (long)5l, (long)1l)))) == (1l)); assert(search((new ArrayList<Long>(Arrays.asList((long)4l, (long)1l, (long)4l, (long)1l, (long)4l, (long)4l)))) == (4l)); assert(search((new Arra...
[ "\n }\n" ]
HumanEval_70_strange_sort_list
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given array list of integers, return array list in strange order. // Strange sorting, is when you start with the minimum value, // then maximum of the r...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_70_strange_sort_list.py
reworded
} public static void main(String[] args) { assert(strangeSortList((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l, (long)4l)))).equals((new ArrayList<Long>(Arrays.asList((long)1l, (long)4l, (long)2l, (long)3l))))); assert(strangeSortList((new ArrayList<Long>(Arrays.asList((long)5l, (long...
[ "\n }\n" ]
HumanEval_71_triangle_area
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given the lengths of the three sides of a triangle. Return the area of // the triangle rounded to 2 decimal points if the three sides form a valid triangle....
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_71_triangle_area.py
reworded
} public static void main(String[] args) { assert(triangleArea((3l), (4l), (5l)) == (6.0f)); assert(triangleArea((1l), (2l), (10l)) == (float)-1l); assert(triangleArea((4l), (8l), (5l)) == (8.18f)); assert(triangleArea((2l), (2l), (2l)) == (1.73f)); assert(triangleArea((1l), (2l), (3l)) == (...
[ "\n }\n" ]
HumanEval_72_will_it_fly
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Write a function that returns true if the object q will fly, and false otherwise. // The object q will fly if it's balanced (it is a palindromic array list)...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_72_will_it_fly.py
reworded
} public static void main(String[] args) { assert(willItFly((new ArrayList<Long>(Arrays.asList((long)3l, (long)2l, (long)3l))), (9l)) == (true)); assert(willItFly((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l))), (5l)) == (false)); assert(willItFly((new ArrayList<Long>(Arrays.asList((long)3l...
[ "\n }\n" ]
HumanEval_73_smallest_change
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given an array array list arr of integers, find the minimum number of elements that // need to be changed to make the array array list palindromic. A palind...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_73_smallest_change.py
reworded
} public static void main(String[] args) { assert(smallestChange((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l, (long)5l, (long)4l, (long)7l, (long)9l, (long)6l)))) == (4l)); assert(smallestChange((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l, (long)4l, (long)3l, (lon...
[ "\n }\n" ]
HumanEval_74_total_match
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Write a function that accepts two array lists of strings and returns the array list that has // total number of chars in the all strings of the array list ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_74_total_match.py
reworded
} public static void main(String[] args) { assert(totalMatch((new ArrayList<String>(Arrays.asList())), (new ArrayList<String>(Arrays.asList()))).equals((new ArrayList<String>(Arrays.asList())))); assert(totalMatch((new ArrayList<String>(Arrays.asList((String)"hi", (String)"admin"))), (new ArrayList<Stri...
[ "\n }\n" ]
HumanEval_75_is_multiply_prime
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Write a function that returns true if the given number is the multiplication of 3 prime numbers // and false otherwise. // Knowing that (a) is less then...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_75_is_multiply_prime.py
reworded
} public static void main(String[] args) { assert(isMultiplyPrime((5l)) == (false)); assert(isMultiplyPrime((30l)) == (true)); assert(isMultiplyPrime((8l)) == (true)); assert(isMultiplyPrime((10l)) == (false)); assert(isMultiplyPrime((125l)) == (true)); assert(isMultiplyPrime((105l)) == ...
[ "\n }\n" ]
HumanEval_76_is_simple_power
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Your task is to write a function that returns true if a number x is a simple // power of n and false in other cases. // x is a simple power of n if n**i...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_76_is_simple_power.py
reworded
} public static void main(String[] args) { assert(isSimplePower((16l), (2l)) == (true)); assert(isSimplePower((143214l), (16l)) == (false)); assert(isSimplePower((4l), (2l)) == (true)); assert(isSimplePower((9l), (3l)) == (true)); assert(isSimplePower((16l), (4l)) == (true)); assert(isSi...
[ "\n }\n" ]
HumanEval_77_iscube
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Write a function that takes an integer a and returns true // if this ingeger is a cube of some integer number. // Note: you may assume the input is alw...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_77_iscube.py
reworded
} public static void main(String[] args) { assert(iscube((1l)) == (true)); assert(iscube((2l)) == (false)); assert(iscube((-1l)) == (true)); assert(iscube((64l)) == (true)); assert(iscube((180l)) == (false)); assert(iscube((1000l)) == (true)); assert(iscube((0l)) == (true)); asse...
[ "\n }\n" ]
HumanEval_78_hex_key
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // You have been tasked to write a function that receives // a hexadecimal number as a string and counts the number of hexadecimal // digits that are pri...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_78_hex_key.py
reworded
} public static void main(String[] args) { assert(hexKey(("AB")) == (1l)); assert(hexKey(("1077E")) == (2l)); assert(hexKey(("ABED1A33")) == (4l)); assert(hexKey(("2020")) == (2l)); assert(hexKey(("123456789ABCDEF0")) == (6l)); assert(hexKey(("112233445566778899AABBCCDDEEFF00")) == (12l)...
[ "\n }\n" ]
HumanEval_79_decimal_to_binary
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // You will be given a number in decimal form and your task is to convert it to // binary format. The function should return a string, with each character repr...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_79_decimal_to_binary.py
reworded
} public static void main(String[] args) { assert(decimalToBinary((0l)).equals(("db0db"))); assert(decimalToBinary((32l)).equals(("db100000db"))); assert(decimalToBinary((103l)).equals(("db1100111db"))); assert(decimalToBinary((15l)).equals(("db1111db"))); } }
[ "\n }\n" ]
HumanEval_80_is_happy
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // You are given a string s. // Your task is to check if the string is hapjava or not. // A string is hapjava if its length is at least 3 and every 3 conse...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_80_is_happy.py
reworded
} public static void main(String[] args) { assert(isHappy(("a")) == (false)); assert(isHappy(("aa")) == (false)); assert(isHappy(("abcd")) == (true)); assert(isHappy(("aabb")) == (false)); assert(isHappy(("adb")) == (true)); assert(isHappy(("xyy")) == (false)); assert(isHappy(("iopax...
[ "\n }\n" ]
HumanEval_81_numerical_letter_grade
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // It is the last week of the semester and the teacher has to give the grades // to students. The teacher has been making her own algorithm for grading. //...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_81_numerical_letter_grade.py
reworded
} public static void main(String[] args) { assert(numericalLetterGrade((new ArrayList<Float>(Arrays.asList((float)4.0f, (float)3l, (float)1.7f, (float)2l, (float)3.5f)))).equals((new ArrayList<String>(Arrays.asList((String)"A+", (String)"B", (String)"C-", (String)"C", (String)"A-"))))); assert(numerical...
[ "\n }\n" ]
HumanEval_82_prime_length
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Write a function that takes a string and returns true if the string // length is a prime number or false otherwise // Examples // >>> primeLength(("...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_82_prime_length.py
reworded
} public static void main(String[] args) { assert(primeLength(("Hello")) == (true)); assert(primeLength(("abcdcba")) == (true)); assert(primeLength(("kittens")) == (true)); assert(primeLength(("orange")) == (false)); assert(primeLength(("wow")) == (true)); assert(primeLength(("world")) =...
[ "\n }\n" ]
HumanEval_83_starts_one_ends
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given a positive integer n, return the count of the numbers of n-digit // positive integers that start or end with 1. public static long startsOneEnds(l...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_83_starts_one_ends.py
reworded
} public static void main(String[] args) { assert(startsOneEnds((1l)) == (1l)); assert(startsOneEnds((2l)) == (18l)); assert(startsOneEnds((3l)) == (180l)); assert(startsOneEnds((4l)) == (1800l)); assert(startsOneEnds((5l)) == (18000l)); } }
[ "\n }\n" ]
HumanEval_84_solve
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given a positive integer N, return the total sum of its digits in binary. // Example // >>> solve((1000l)) // ("1") // >>> solve((150l)) // ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_84_solve.py
reworded
} public static void main(String[] args) { assert(solve((1000l)).equals(("1"))); assert(solve((150l)).equals(("110"))); assert(solve((147l)).equals(("1100"))); assert(solve((333l)).equals(("1001"))); assert(solve((963l)).equals(("10010"))); } }
[ "\n }\n" ]
HumanEval_85_add
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given a non-empty array list of integers lst. add the even elements that are at odd indices.. // Examples: // >>> add((new ArrayList<Long>(Arrays.asList...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_85_add.py
reworded
} public static void main(String[] args) { assert(add((new ArrayList<Long>(Arrays.asList((long)4l, (long)88l)))) == (88l)); assert(add((new ArrayList<Long>(Arrays.asList((long)4l, (long)5l, (long)6l, (long)7l, (long)2l, (long)122l)))) == (122l)); assert(add((new ArrayList<Long>(Arrays.asList((long)4...
[ "\n }\n" ]
HumanEval_86_anti_shuffle
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Write a function that takes a string and returns an ordered version of it. // Ordered version of string, is a string where all words (separated by space) ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_86_anti_shuffle.py
reworded
} public static void main(String[] args) { assert(antiShuffle(("Hi")).equals(("Hi"))); assert(antiShuffle(("hello")).equals(("ehllo"))); assert(antiShuffle(("number")).equals(("bemnru"))); assert(antiShuffle(("abcd")).equals(("abcd"))); assert(antiShuffle(("Hello World!!!")).equals(("Hello !...
[ "\n }\n" ]
HumanEval_87_get_row
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // You are given a 2 dimensional data, as a nested array lists, // which is similar to matrix, however, unlike matrices, // each row may contain a differen...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_87_get_row.py
reworded
} public static void main(String[] args) { assert(getRow((new ArrayList<ArrayList<Long>>(Arrays.asList((ArrayList<Long>)new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l, (long)4l, (long)5l, (long)6l)), (ArrayList<Long>)new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l, (long)4l, (...
[ "\n }\n" ]
HumanEval_88_sort_array
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given an array array list of non-negative integers, return a cojava of the given array array list after sorting, // you will sort the given array array list...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_88_sort_array.py
reworded
} public static void main(String[] args) { assert(sortArray((new ArrayList<Long>(Arrays.asList()))).equals((new ArrayList<Long>(Arrays.asList())))); assert(sortArray((new ArrayList<Long>(Arrays.asList((long)5l)))).equals((new ArrayList<Long>(Arrays.asList((long)5l))))); assert(sortArray((new ArrayLi...
[ "\n }\n" ]
HumanEval_89_encrypt
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Create a function encrypt that takes a string as an argument and // returns a string encrypted with the alphabet being rotated. // The alphabet should ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_89_encrypt.py
reworded
} public static void main(String[] args) { assert(encrypt(("hi")).equals(("lm"))); assert(encrypt(("asdfghjkl")).equals(("ewhjklnop"))); assert(encrypt(("gf")).equals(("kj"))); assert(encrypt(("et")).equals(("ix"))); assert(encrypt(("faewfawefaewg")).equals(("jeiajeaijeiak"))); assert(en...
[ "\n }\n" ]
HumanEval_90_next_smallest
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // You are given an array array list of integers. // Write a function next_smallest() that returns the 2nd smallest element of the array list. // Return nu...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_90_next_smallest.py
reworded
} public static void main(String[] args) { assert(nextSmallest((new ArrayList<Long>(Arrays.asList((long)1l, (long)2l, (long)3l, (long)4l, (long)5l)))).equals(Optional.of(2l))); assert(nextSmallest((new ArrayList<Long>(Arrays.asList((long)5l, (long)1l, (long)4l, (long)3l, (long)2l)))).equals(Optional.of(...
[ "\n }\n" ]
HumanEval_91_is_bored
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // You'll be given a string of words, and your task is to count the number // of boredoms. A boredom is a sentence that starts with the word "I". // Senten...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_91_is_bored.py
reworded
} public static void main(String[] args) { assert(isBored(("Hello world")) == (0l)); assert(isBored(("Is the sky blue?")) == (0l)); assert(isBored(("I love It !")) == (1l)); assert(isBored(("bIt")) == (0l)); assert(isBored(("I feel good today. I will be productive. will kill It")) == (2l)); ...
[ "\n }\n" ]
HumanEval_92_any_int
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Create a function that takes 3 numbers. // Returns true if one of the numbers is equal to the sum of the other two, and all numbers are integers. // Ret...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_92_any_int.py
reworded
} public static void main(String[] args) { assert(anyInt((float)2l, (float)3l, (float)1l) == (true)); assert(anyInt((2.5f), (float)2l, (float)3l) == (false)); assert(anyInt((1.5f), (float)5l, (3.5f)) == (false)); assert(anyInt((float)2l, (float)6l, (float)2l) == (false)); assert(anyInt((floa...
[ "\n }\n" ]
HumanEval_93_encode
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Write a function that takes a message, and encodes in such a // way that it swaps case of all letters, replaces all vowels in // the message with the ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_93_encode.py
reworded
} public static void main(String[] args) { assert(encode(("TEST")).equals(("tgst"))); assert(encode(("Mudasir")).equals(("mWDCSKR"))); assert(encode(("YES")).equals(("ygs"))); assert(encode(("This is a message")).equals(("tHKS KS C MGSSCGG"))); assert(encode(("I DoNt KnOw WhAt tO WrItE")).eq...
[ "\n }\n" ]
HumanEval_94_skjkasdkd
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // You are given an array array list of integers. // You need to find the largest prime value and return the sum of its digits. // Examples: // >>> skj...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_94_skjkasdkd.py
reworded
} public static void main(String[] args) { assert(skjkasdkd((new ArrayList<Long>(Arrays.asList((long)0l, (long)3l, (long)2l, (long)1l, (long)3l, (long)5l, (long)7l, (long)4l, (long)5l, (long)5l, (long)5l, (long)2l, (long)181l, (long)32l, (long)4l, (long)32l, (long)3l, (long)2l, (long)32l, (long)324l, (long)...
[ "\n }\n" ]
HumanEval_95_check_dict_case
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given a hash map, return true if all keys are strings in lower // case or all keys are strings in upper case, else return false. // The function should...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_95_check_dict_case.py
reworded
} public static void main(String[] args) { assert(checkDictCase((new HashMap<String,String>(Map.of("p", "pineapple", "b", "banana")))) == (true)); assert(checkDictCase((new HashMap<String,String>(Map.of("p", "pineapple", "A", "banana", "B", "banana")))) == (false)); assert(checkDictCase((new HashMap...
[ "\n }\n" ]
HumanEval_96_count_up_to
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Implement a function that takes an non-negative integer and returns an array array list of the first n // integers that are prime numbers and less than n. ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_96_count_up_to.py
reworded
} public static void main(String[] args) { assert(countUpTo((5l)).equals((new ArrayList<Long>(Arrays.asList((long)2l, (long)3l))))); assert(countUpTo((6l)).equals((new ArrayList<Long>(Arrays.asList((long)2l, (long)3l, (long)5l))))); assert(countUpTo((7l)).equals((new ArrayList<Long>(Arrays.asList((l...
[ "\n }\n" ]
HumanEval_97_multiply
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Complete the function that takes two integers and returns // the product of their unit digits. // Assume the input is always valid. // Examples: ...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_97_multiply.py
reworded
} public static void main(String[] args) { assert(multiply((148l), (412l)) == (16l)); assert(multiply((19l), (28l)) == (72l)); assert(multiply((2020l), (1851l)) == (0l)); assert(multiply((14l), (-15l)) == (20l)); assert(multiply((76l), (67l)) == (42l)); assert(multiply((17l), (27l)) == (...
[ "\n }\n" ]
HumanEval_98_count_upper
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given a string s, count the number of uppercase vowels in even indices. // For example: // >>> countUpper(("aBCdEf")) // (1l) // >>> countUpper(...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_98_count_upper.py
reworded
} public static void main(String[] args) { assert(countUpper(("aBCdEf")) == (1l)); assert(countUpper(("abcdefg")) == (0l)); assert(countUpper(("dBBE")) == (0l)); assert(countUpper(("B")) == (0l)); assert(countUpper(("U")) == (1l)); assert(countUpper(("")) == (0l)); assert(countUpper(...
[ "\n }\n" ]
HumanEval_99_closest_integer
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Create a function that takes a value (string) representing a number // and returns the closest integer to it. If the number is equidistant // from two i...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_99_closest_integer.py
reworded
} public static void main(String[] args) { assert(closestInteger(("10")) == (10l)); assert(closestInteger(("14.5")) == (15l)); assert(closestInteger(("-15.5")) == (-16l)); assert(closestInteger(("15.3")) == (15l)); assert(closestInteger(("0")) == (0l)); } }
[ "\n }\n" ]
HumanEval_100_make_a_pile
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // Given a positive integer n, you have to make a pile of n levels of stones. // The first level has n stones. // The number of stones in the next level is...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_100_make_a_pile.py
reworded
} public static void main(String[] args) { assert(makeAPile((3l)).equals((new ArrayList<Long>(Arrays.asList((long)3l, (long)5l, (long)7l))))); assert(makeAPile((4l)).equals((new ArrayList<Long>(Arrays.asList((long)4l, (long)6l, (long)8l, (long)10l))))); assert(makeAPile((5l)).equals((new ArrayList<L...
[ "\n }\n" ]
HumanEval_101_words_string
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // You will be given a string of words separated by commas or spaces. Your task is // to split the string into words and return an array array list of the word...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_101_words_string.py
reworded
} public static void main(String[] args) { assert(wordsString(("Hi, my name is John")).equals((new ArrayList<String>(Arrays.asList((String)"Hi", (String)"my", (String)"name", (String)"is", (String)"John"))))); assert(wordsString(("One, two, three, four, five, six")).equals((new ArrayList<String>(Arrays....
[ "\n }\n" ]
HumanEval_102_choose_num
java
import java.util.*; import java.lang.reflect.*; import java.security.*; import java.math.*; import java.io.*; import java.util.stream.*; class Problem { // This function takes two positive numbers x and y and returns the // biggest even integer number that is in the range [x, y] inclusive. If // there's no...
transform
/work/arjunguha-research-group/arjun/repos/nuprl/MultiPL-E/datasets/../datasets/originals-with-cleaned-doctests/HumanEval_102_choose_num.py
reworded
} public static void main(String[] args) { assert(chooseNum((12l), (15l)) == (14l)); assert(chooseNum((13l), (12l)) == (-1l)); assert(chooseNum((33l), (12354l)) == (12354l)); assert(chooseNum((5234l), (5233l)) == (-1l)); assert(chooseNum((6l), (29l)) == (28l)); assert(chooseNum((27l), (1...
[ "\n }\n" ]