You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OpenLeetCode problem builder. This script builds and tests a leetcode like problems locally. Currently, it only supports C++ language but it can be extended to support other languages.
96
95
@@ -99,12 +98,13 @@ options:
99
98
--language {cpp}, -l {cpp}
100
99
The programming language.
101
100
--list-problems List problems.
101
+
--list-testcases List testcases for a problem specified with '--problem' option.
102
102
--problem problem_name, -p problem_name
103
-
Name of the problem to build and test. Default: TwoSum. Use --list-problems to
104
-
list all problems.
103
+
Name of the problem to build and test. Default: TwoSum. Use --list-problems to list all problems.
105
104
--problem_builds_dir dir, -d dir
106
-
Path to a directory with the problems. Usually ./problem_builds/ directory.
107
-
Default: problem_builds.
105
+
Path to a directory with the problems. Usually ./problem_builds/ directory. Default: problem_builds.
106
+
--testcase testcase_name, -t testcase_name
107
+
Name of the testcase to run. '--testcase All' will run all testcases. Default: All.
0 commit comments