Skip to content

Commit 956fae7

Browse files
committed
[bug] input params(long long) parse error
1 parent 089518b commit 956fae7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

leetcode_local_tester/creator/cpp_creator.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ def _create_func_problem_test(self, dir_loc, p: Problem):
8080
for idx, input_param in enumerate(f.input_params):
8181
if input_param == "":
8282
continue
83-
tmp = input_param.split(" ")
83+
# tmp maybe long long value
84+
tmp = input_param.rsplit(" ", 1)
85+
8486
input_type = tmp[0]
8587
input_name = tmp[1]
8688

@@ -128,7 +130,7 @@ def work(func_name):
128130
for idx, input_param in enumerate(input_params):
129131
if input_param == '':
130132
continue
131-
tmp = input_param.split(" ")
133+
tmp = input_param.rsplit(" ", 1)
132134
input_type = tmp[0]
133135
input_name = tmp[1]
134136

0 commit comments

Comments
 (0)