prefix
stringlengths
65
1.8k
suffix
stringclasses
839 values
solution
stringlengths
6
859
test_cases
listlengths
0
100
import_str
listlengths
0
1
demos
listlengths
0
8
entry_func
stringclasses
158 values
data_id
stringlengths
36
40
doc_string
stringclasses
164 values
dataset_name
stringclasses
1 value
task_name
stringclasses
1 value
compare_func
listlengths
0
0
src_lang
stringclasses
1 value
tgt_lang
stringclasses
1 value
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 3.3: letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") eli...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L8_L25
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 3.3: letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") eli...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L8_L26
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
else: letter_grade.append("E") return letter_grade
elif gpa > 3.3: letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") eli...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L8_L27
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("E") return letter_grade
elif gpa > 3.3: letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") eli...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L8_L28
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
return letter_grade
elif gpa > 3.3: letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") eli...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L8_L29
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 3.3: letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") eli...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L8_L30
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif...
letter_grade.append("A-")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L9
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: ...
letter_grade.append("A-") elif gpa > 3.0:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L10
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif...
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L11
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: ...
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L12
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") eli...
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L13
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: ...
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L14
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif...
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L15
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: ...
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L16
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else...
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L17
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_gra...
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L18
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grad...
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L19
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L20
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L21
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L22
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L23
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L24
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L25
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L26
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
else: letter_grade.append("E") return letter_grade
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L27
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("E") return letter_grade
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L28
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
return letter_grade
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L29
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("A-") elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L9_L30
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: ...
elif gpa > 3.0:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L10
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif...
elif gpa > 3.0: letter_grade.append("B+")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L11
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: ...
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L12
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") eli...
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L13
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: ...
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L14
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif...
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L15
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: ...
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L16
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else...
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L17
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_gra...
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L18
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grad...
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L19
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L20
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L21
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L22
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L23
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L24
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L25
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L26
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
else: letter_grade.append("E") return letter_grade
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L27
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("E") return letter_grade
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L28
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
return letter_grade
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L29
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 3.0: letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L10_L30
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif...
letter_grade.append("B+")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L11
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: ...
letter_grade.append("B+") elif gpa > 2.7:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L12
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") eli...
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L13
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: ...
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L14
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif...
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L15
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: ...
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L16
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else...
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L17
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_gra...
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L18
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grad...
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L19
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L20
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L21
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L22
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L23
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L24
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L25
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L26
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
else: letter_grade.append("E") return letter_grade
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L27
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("E") return letter_grade
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L28
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
return letter_grade
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L29
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("B+") elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L11_L30
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: ...
elif gpa > 2.7:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L12
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") eli...
elif gpa > 2.7: letter_grade.append("B")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L13
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: ...
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L14
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif...
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L15
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: ...
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L16
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else...
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L17
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_gra...
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L18
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grad...
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L19
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L20
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L21
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L22
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L23
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L24
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L25
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L26
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
else: letter_grade.append("E") return letter_grade
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L27
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("E") return letter_grade
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L28
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
return letter_grade
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L29
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.7: letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L12_L30
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") eli...
letter_grade.append("B")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L13_L13
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: ...
letter_grade.append("B") elif gpa > 2.3:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L13_L14
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif...
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L13_L15
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: ...
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L13_L16
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else...
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L13_L17
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_gra...
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L13_L18
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grad...
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L13_L19
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("C-") elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L13_L20
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 1.0: letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-")
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L13_L21
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D+") elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0:
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L13_L22
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
elif gpa > 0.7: letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L13_L23
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python
def numerical_letter_grade(grades): """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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students a...
letter_grade.append("D") elif gpa > 0.0: letter_grade.append("D-") else: letter_grade.append("E") return letter_grade
letter_grade.append("B") elif gpa > 2.3: letter_grade.append("B-") elif gpa > 2.0: letter_grade.append("C+") elif gpa > 1.7: letter_grade.append("C") elif gpa > 1.3: letter_grade.append("C-") elif gpa > 1.0: ...
[ [ "[4.0, 3, 1.7, 2, 3.5]", "['A+', 'B', 'C-', 'C', 'A-']" ], [ "[1.2]", "['D+']" ], [ "[0.5]", "['D-']" ], [ "[0.0]", "['E']" ], [ "[1, 0.3, 1.5, 2.8, 3.3]", "['D', 'D-', 'C-', 'B', 'B+']" ], [ "[0, 0.7]", "['E', 'D-']" ] ]
[]
[ [ "[4.0, 3, 1.7, 2, 3.5]", "> ['A+', 'B', 'C-', 'C', 'A-']" ] ]
numerical_letter_grade
MultiLineInfilling/HumanEval/81/L13_L24
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. The only problem is, she has lost the code she used for grading. She has given you a list of GPAs for some students and you have to write a function that ca...
HumanEval_MultiLineInfilling
code_infilling
[]
python
python