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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,3 +72,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
72
72
- updated the logic for fetchTestCases as some leetcode problem page has input and output under <pre> class so we have to use <pre> as the selector for puppeteer on the other hand some leetcode problems(old problems) has input and output under div.example-block under <strong> tags so I have updated the logic of puppeteer to fetch test cases for all the problems in leetcode no matter new or old
73
73
(this thing can change anytime if any time leetcode decided to change the class under which they write input and output)
74
74
75
+
### Added
76
+
- You can now edit the testcases or add some extra test cases by going to the directory where your testcases are saved using "Get I/O file directory" option
@@ -43,11 +43,10 @@ LeetCode Helper is a Visual Studio Code extension designed to streamline the pro
43
43
-**Fetch LeetCode Problems**: Quickly fetch problem statements and test cases.
44
44
-**Run Test Cases**: Execute your code against provided test cases and see the results instantly.
45
45
-**Solution File Management**: Automatically generate and manage solution files.
46
-
-**Error Handling**: Detailed error messages to help you debug your code.
47
-
-**Feature to edit/add extra test cases**:User can add extra test cases for testing.
46
+
-**Error Handling**: Detailed error messages to help you debug your code with Expected and Actual results.
48
47
-**Panel for running commands**:User can use the panel that is present on the left side to run command instead of using command panel(also added key bindings to all commands).
48
+
-**Edit Testcases or add more test cases**: User can either edit/add/delete testcases by going to the directory where the testcases file are saved by using "Get I/O File Directory".
49
49
50
-
![Features]
51
50
52
51
## Installation
53
52
@@ -63,7 +62,6 @@ LeetCode Helper is a Visual Studio Code extension designed to streamline the pro
63
62
3. Write your solution in the generated file(in both python and c++).
64
63
4. Run your test cases using `LeetCode Helper: Run Test Cases`. / or use CTRL+5.
65
64
66
-
![Usage]
67
65
68
66
## Extension Settings
69
67
@@ -75,9 +73,9 @@ This extension contributes the following settings:
75
73
## Known Issues
76
74
77
75
- Some edge cases might not be handled correctly.
78
-
- for testing C++ you may need to parse the variables from input files manually depending on the data type inside the run_test_case function
79
-
- Limited support for languages (Python and C++)
80
-
- All test are not checked in one go you need to check for each test case individually(please refer to this page for better understanding - https://stackoverflow.com/questions/9551014/reading-parsing-text-file-input-c) THANKS
76
+
- for testing C++ you may need to parse the variables from input files manually depending on the data type inside the run_test_case function (please refer to this page for better understanding - https://stackoverflow.com/questions/9551014/reading-parsing-text-file-input-c)
77
+
- Limited support for languages other than Python and C++.
78
+
- All test are not checked in one go you need to check for each test case individually
0 commit comments