Files
email-tracker/external/duckdb/data/csv/unquoted_escape/human_eval.csv
2025-10-24 19:21:19 -05:00

8.9 KiB

1HumanEval/0,from typing import List\
2\
3\
4def has_close_elements(numbers: List[float]\, threshold: float) -> bool:\
5\
6,\
7\
8METADATA = {\
9}\
10\
11\
12def check(candidate):\
13\
14HumanEval/1,from typing import List\
15\
16\
17def separate_paren_groups(paren_string: str) -> List[str]:\
18\
19\
20\
21,\
22\
23METADATA = {\
24}\
25\
26\
27def check(candidate):\
28HumanEval/2,\
29\
30def truncate_number(number: float) -> float:\
31,\
32\
33METADATA = {\
34}\
35\
36\
37def check(candidate):\
38HumanEval/3,from typing import List\
39\
40\
41def below_zero(operations: List[int]) -> bool:\
42\
43\
44,\
45\
46METADATA = {\
47}\
48\
49\
50def check(candidate):\
51HumanEval/4,from typing import List\
52\
53\
54def mean_absolute_deviation(numbers: List[float]) -> float:\
55,\
56\
57METADATA = {\
58}\
59\
60\
61def check(candidate):\
62\
63HumanEval/5,from typing import List\
64\
65\
66def intersperse(numbers: List[int]\, delimeter: int) -> List[int]:\
67\
68\
69\
70\
71,\
72\
73METADATA = {\
74}\
75\
76\
77def check(candidate):\
78HumanEval/6,from typing import List\
79\
80\
81def parse_nested_parens(paren_string: str) -> List[int]:\
82\
83\
84,\
85\
86METADATA = {\
87}\
88\
89\
90def check(candidate):\
91HumanEval/7,from typing import List\
92\
93\
94def filter_by_substring(strings: List[str]\, substring: str) -> List[str]:\
95,\
96\
97METADATA = {\
98}\
99\
100\
101def check(candidate):\
102HumanEval/8,from typing import List\, Tuple\
103\
104\
105def sum_product(numbers: List[int]) -> Tuple[int\, int]:\
106\
107,\
108\
109METADATA = {\
110}\
111\
112\
113def check(candidate):\
114HumanEval/9,from typing import List\, Tuple\
115\
116\
117def rolling_max(numbers: List[int]) -> List[int]:\
118\
119\
120\
121,\
122\
123METADATA = {\
124}\
125\
126\
127def check(candidate):\