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
Update CLI flag from '--mode' to '--practice-mode'
Replaced all occurrences of '--mode' with '--practice-mode' in the documentation for consistency and clarity. This update ensures better alignment with the intended functionality and improves usability.
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ Squidleet offers multiple modes and configuration options for practicing LeetCod
54
54
Daily Challenge Mode allows you to fetch and solve the LeetCode Daily Challenge directly from the terminal.
55
55
56
56
```bash
57
-
python3 main.py --mode daily
57
+
python3 main.py --practice-mode daily
58
58
```
59
59
60
60
Optional arguments:
@@ -81,7 +81,7 @@ Selected 📅 Daily Challenge Mode
81
81
Solve a randomly selected LeetCode problem based on difficulty. Random Practice Mode allows you to solve a randomly selected LeetCode problem. Enhanced difficulty classification includes options such as `easy`, `medium`, `hard`, or a combination (e.g., `--difficulty easy,medium`).
82
82
83
83
```bash
84
-
python3 main.py --mode random --difficulty medium
84
+
python3 main.py --practice-mode random --difficulty medium
85
85
```
86
86
87
87
Optional arguments:
@@ -107,7 +107,7 @@ Selected 🎲 Random Problem Mode
107
107
Custom Modes enable solving specific problems or sets of problems by providing one or multiple problem slugs (e.g., `--problems two-sum,three-sum`).
@@ -132,7 +132,7 @@ Selected 🧩 Custom Practice Mode
132
132
Study Plan Mode allows you to fetch random problems based on a specific study plan. You can specify the study plan name to fetch problems from that plan.
0 commit comments