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 special_factorial(n):
"""The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
"""
fact_i = 1
special_fact = 1
|
for i in range(1, n+1):
fact_i *= i
special_fact *= fact_i
return special_fact
|
[
[
"4",
"288"
],
[
"5",
"34560"
],
[
"7",
"125411328000"
],
[
"1",
"1"
]
] |
[] |
[
[
"4",
"288"
]
] |
special_factorial
|
MultiLineInfilling/HumanEval/139/L2_L5
|
The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
|
def special_factorial(n):
"""The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
"""
fact_i = 1
special_fact = 1
for i in range(1, n+1):
|
special_fact *= fact_i
return special_fact
|
fact_i *= i
|
[
[
"4",
"288"
],
[
"5",
"34560"
],
[
"7",
"125411328000"
],
[
"1",
"1"
]
] |
[] |
[
[
"4",
"288"
]
] |
special_factorial
|
MultiLineInfilling/HumanEval/139/L3_L3
|
The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def special_factorial(n):
"""The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
"""
fact_i = 1
special_fact = 1
for i in range(1, n+1):
|
return special_fact
|
fact_i *= i
special_fact *= fact_i
|
[
[
"4",
"288"
],
[
"5",
"34560"
],
[
"7",
"125411328000"
],
[
"1",
"1"
]
] |
[] |
[
[
"4",
"288"
]
] |
special_factorial
|
MultiLineInfilling/HumanEval/139/L3_L4
|
The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def special_factorial(n):
"""The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
"""
fact_i = 1
special_fact = 1
for i in range(1, n+1):
|
fact_i *= i
special_fact *= fact_i
return special_fact
|
[
[
"4",
"288"
],
[
"5",
"34560"
],
[
"7",
"125411328000"
],
[
"1",
"1"
]
] |
[] |
[
[
"4",
"288"
]
] |
special_factorial
|
MultiLineInfilling/HumanEval/139/L3_L5
|
The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
|
def special_factorial(n):
"""The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
"""
fact_i = 1
special_fact = 1
for i in range(1, n+1):
fact_i *= i
|
return special_fact
|
special_fact *= fact_i
|
[
[
"4",
"288"
],
[
"5",
"34560"
],
[
"7",
"125411328000"
],
[
"1",
"1"
]
] |
[] |
[
[
"4",
"288"
]
] |
special_factorial
|
MultiLineInfilling/HumanEval/139/L4_L4
|
The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def special_factorial(n):
"""The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
"""
fact_i = 1
special_fact = 1
for i in range(1, n+1):
fact_i *= i
|
special_fact *= fact_i
return special_fact
|
[
[
"4",
"288"
],
[
"5",
"34560"
],
[
"7",
"125411328000"
],
[
"1",
"1"
]
] |
[] |
[
[
"4",
"288"
]
] |
special_factorial
|
MultiLineInfilling/HumanEval/139/L4_L5
|
The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
|
def special_factorial(n):
"""The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
"""
fact_i = 1
special_fact = 1
for i in range(1, n+1):
fact_i *= i
special_fact *= fact_i
|
return special_fact
|
[
[
"4",
"288"
],
[
"5",
"34560"
],
[
"7",
"125411328000"
],
[
"1",
"1"
]
] |
[] |
[
[
"4",
"288"
]
] |
special_factorial
|
MultiLineInfilling/HumanEval/139/L5_L5
|
The Brazilian factorial is defined as:
brazilian_factorial(n) = n! * (n-1)! * (n-2)! * ... * 1!
where n > 0
The function will receive an integer as input and should return the special
factorial of this integer.
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L0
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L1
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L2
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L3
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L4
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L5
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L6
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L7
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L8
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L9
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L10
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L11
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L12
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L13
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L14
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L15
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
elif end - start > 0:
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L16
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
new_text += "_"
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L17
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
return new_text
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L18
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
|
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L0_L19
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L1
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L2
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L3
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L4
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L5
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L6
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L7
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L8
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L9
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L10
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L11
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L12
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L13
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L14
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L15
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
elif end - start > 0:
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L16
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
new_text += "_"
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L17
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
return new_text
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L18
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
|
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L1_L19
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L2
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L3
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L4
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L5
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L6
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L7
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L8
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L9
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L10
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L11
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L12
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L13
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L14
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L15
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
elif end - start > 0:
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L16
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
new_text += "_"
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L17
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
return new_text
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L18
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
|
start, end = 0, 0
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L2_L19
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L3
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L4
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L5
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L6
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L7
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L8
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L9
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L10
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L11
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L12
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L13
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L14
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L15
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
elif end - start > 0:
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L16
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
new_text += "_"
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L17
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
return new_text
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L18
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
|
while i < len(text):
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L3_L19
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L4
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L5
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
else:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L6
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L7
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L8
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L9
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L10
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L11
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L12
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L13
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L14
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L15
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
elif end - start > 0:
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L16
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
new_text += "_"
return new_text
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L17
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
return new_text
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L18
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
|
if text[i] == " ":
end += 1
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L4_L19
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
|
else:
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
end += 1
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L5_L5
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
|
if end - start > 2:
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
end += 1
else:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L5_L6
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
def fix_spaces(text):
"""
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
"""
new_text = ""
i = 0
start, end = 0, 0
while i < len(text):
if text[i] == " ":
|
new_text += "-"+text[i]
elif end - start > 0:
new_text += "_"*(end - start)+text[i]
else:
new_text += text[i]
start, end = i+1, i+1
i+=1
if end - start > 2:
new_text += "-"
elif end - start > 0:
new_text += "_"
return new_text
|
end += 1
else:
if end - start > 2:
|
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Mudasir Hanif \"",
"\"Mudasir_Hanif_\""
],
[
"\"Yellow Yellow Dirty Fellow\"",
"\"Yellow_Yellow__Dirty__Fellow\""
],
[
"\"Exa mple\"",
"\"Exa-mple\""
],
[
"\" Exa 1 2 2 mple\"",
"\"-Exa_1_2_2_mple\""
]
] |
[] |
[
[
"\"Example\"",
"\"Example\""
],
[
"\"Example 1\"",
"\"Example_1\""
],
[
"\" Example 2\"",
"\"_Example_2\""
],
[
"\" Example 3\"",
"\"_Example-3\""
]
] |
fix_spaces
|
MultiLineInfilling/HumanEval/140/L5_L7
|
Given a string text, replace all spaces in it with underscores,
and if a string has more than 2 consecutive spaces,
then replace all consecutive spaces with -
|
HumanEval_MultiLineInfilling
|
code_infilling
|
[] |
python
|
python
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.