Skip to content

Commit f806bb7

Browse files
committed
updated boilerplates for code
1 parent 1c66a5d commit f806bb7

File tree

7 files changed

+380
-336
lines changed

7 files changed

+380
-336
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7272
- 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
7373
(this thing can change anytime if any time leetcode decided to change the class under which they write input and output)
7474

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

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# LeetCode Helper Extension
22

33
<div style="display: flex; align-items: center;">
4-
<img src="resources/leetcodeextension.png" alt="LeetCode Extension" width="200"/>
5-
<img src="resources/screenshot01.png" alt="Screenshot" width="200"/>
4+
<img png="resources/leetcodeextension.png" alt="LeetCode Extension" width="200"/>
5+
<img png="resources/screenshot01.png" alt="Screenshot" width="200"/>
66
</div>
77

88
## Table of Contents
@@ -43,11 +43,10 @@ LeetCode Helper is a Visual Studio Code extension designed to streamline the pro
4343
- **Fetch LeetCode Problems**: Quickly fetch problem statements and test cases.
4444
- **Run Test Cases**: Execute your code against provided test cases and see the results instantly.
4545
- **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.
4847
- **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".
4949

50-
![Features]
5150

5251
## Installation
5352

@@ -63,7 +62,6 @@ LeetCode Helper is a Visual Studio Code extension designed to streamline the pro
6362
3. Write your solution in the generated file(in both python and c++).
6463
4. Run your test cases using `LeetCode Helper: Run Test Cases`. / or use CTRL+5.
6564

66-
![Usage]
6765

6866
## Extension Settings
6967

@@ -75,9 +73,9 @@ This extension contributes the following settings:
7573
## Known Issues
7674

7775
- 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
8179

8280
## Release Notes
8381

0 commit comments

Comments
 (0)