lc-review 0.0.5 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -3
- package/dist/index.mjs +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,13 +25,32 @@ Example:
|
|
|
25
25
|
lc-review next 3
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
Record a solved attempt (
|
|
28
|
+
Record a solved attempt (confidence range: 0.0 to 1.0):
|
|
29
29
|
|
|
30
|
-
- `lc-review add <problem_number> <
|
|
30
|
+
- `lc-review add <problem_number> <confidence>`
|
|
31
31
|
|
|
32
32
|
Example:
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
35
|
# add a problem result
|
|
36
|
-
lc-review add 1234 4
|
|
36
|
+
lc-review add 1234 0.4
|
|
37
37
|
```
|
|
38
|
+
|
|
39
|
+
## solutions.log File
|
|
40
|
+
|
|
41
|
+
The tool automatically creates and maintains a `solutions.log` file in your
|
|
42
|
+
current directory to track your problem-solving history. Each entry is recorded
|
|
43
|
+
in the following format:
|
|
44
|
+
|
|
45
|
+
```
|
|
46
|
+
date=YYYY-MM-DD problem=#### confidence=N.N [skip=true]
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
- **date**: The date you solved the problem (ISO format)
|
|
50
|
+
- **problem**: The LeetCode problem number (zero-padded to 4 digits)
|
|
51
|
+
- **confidence**: Your confidence level from 0.0 (no confidence) to 1.0 (full
|
|
52
|
+
confidence)
|
|
53
|
+
- **skip**: Optional flag to mark a problem as skipped in reviews
|
|
54
|
+
|
|
55
|
+
This file is used by the SM2 algorithm to calculate when you should review each
|
|
56
|
+
problem next.
|
package/dist/index.mjs
CHANGED
|
@@ -100964,7 +100964,7 @@ const review = async (logFile, n, premium = false) => {
|
|
|
100964
100964
|
|
|
100965
100965
|
//#endregion
|
|
100966
100966
|
//#region package.json
|
|
100967
|
-
var version = "0.0.
|
|
100967
|
+
var version = "0.0.8";
|
|
100968
100968
|
|
|
100969
100969
|
//#endregion
|
|
100970
100970
|
//#region src/index.ts
|
|
@@ -101036,6 +101036,10 @@ Commands:
|
|
|
101036
101036
|
|
|
101037
101037
|
Prints this help message.
|
|
101038
101038
|
|
|
101039
|
+
lc-review version
|
|
101040
|
+
|
|
101041
|
+
Prints the version of lc-review.
|
|
101042
|
+
|
|
101039
101043
|
lc-review next [n_items]
|
|
101040
101044
|
|
|
101041
101045
|
Gets the next N items for review.
|