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
@@ -42,6 +41,8 @@ LeetCode Helper is a Visual Studio Code extension designed to streamline the pro
42
41
-**Run Test Cases**: Execute your code against provided test cases and see the results instantly.
43
42
-**Solution File Management**: Automatically generate and manage solution files.
44
43
-**Error Handling**: Detailed error messages to help you debug your code.
44
+
-**Feature to edit/add extra test cases**:User can add extra test cases for testing.
45
+
-**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).
45
46
46
47
![Features]
47
48
@@ -54,10 +55,10 @@ LeetCode Helper is a Visual Studio Code extension designed to streamline the pro
54
55
55
56
## Usage
56
57
57
-
1. Open the Command Palette (`Ctrl+Shift+P`).
58
-
2. Type `LeetCode Helper: Fetch Problem` to fetch a new problem.
59
-
3. Write your solution in the generated file.
60
-
4. Run your test cases using `LeetCode Helper: Run Test Cases`.
58
+
1. Open the Command Palette (`Ctrl+Shift+P`) or Directly access from left side panel
59
+
2. Type `LeetCode Helper: Fetch Problem` to fetch a new problem(add extra test cases too if you want too).
60
+
3. Write your solution in the generated file(in both python and c++).
61
+
4. Run your test cases using `LeetCode Helper: Run Test Cases`. / or use CTRL+5.
61
62
62
63
![Usage]
63
64
@@ -71,7 +72,9 @@ This extension contributes the following settings:
71
72
## Known Issues
72
73
73
74
- Some edge cases might not be handled correctly.
75
+
- 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
74
76
- Limited support for languages other than Python and C++.
77
+
- 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
75
78
76
79
## Release Notes
77
80
@@ -93,17 +96,6 @@ We welcome contributions to improve this project. Please follow these guidelines
93
96
94
97
We expect all contributors to adhere to our Code of Conduct. Please read it before contributing.
95
98
96
-
## FAQs
97
-
98
-
**Q: How do I fetch a LeetCode problem?**
99
-
A: Use the command `LeetCode Helper: Fetch Problem` from the Command Palette.
100
-
101
-
**Q: How do I run test cases?**
102
-
A: Use the command `LeetCode Helper: Run Test Cases` from the Command Palette.
103
-
104
-
**Q: What languages are supported?**
105
-
A: Currently, Python and C++ are supported.
106
-
107
99
## Troubleshooting
108
100
109
101
If you encounter any issues, try the following steps:
@@ -124,4 +116,4 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
124
116
-**Logging**: Enhanced logging for better debugging.
125
117
-**Solution File Management**: Automatically generate and manage solution files.
0 commit comments