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: README.md
+21-6Lines changed: 21 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,9 +38,17 @@ A Python package to generate professional LeetCode practice environments. Featur
38
38
39
39
## <aid="whats-included"></a>🎯 What's Included
40
40
41
-
**Current**: All 75 problems from [Grind 75](https://www.techinterviewhandbook.org/grind75/) - the most essential coding interview questions curated by the creator of Blind 75.
41
+
**Current Problem Sets**:
42
42
43
-
**Future**: Planned expansion to all free Grind problems for comprehensive interview preparation. [Contributions welcome!](CONTRIBUTING.md)
**Coverage**: 100+ unique problems across all major coding interview topics and difficulty levels.
50
+
51
+
**Note**: Some problem sets are partially covered. We're actively working to complete all collections. [Contributions welcome!](https://github.com/wisarootl/leetcode-py/blob/main/CONTRIBUTING.md)
44
52
45
53
## <aid="quick-start"></a>🚀 Quick Start
46
54
@@ -56,7 +64,9 @@ pip install leetcode-py-sdk
56
64
# Generate problems anywhere
57
65
lcpy gen -n 1 # Generate Two Sum
58
66
lcpy gen -t grind-75 # Generate all Grind 75 problems
59
-
lcpy list -t grind-75 # List available problems
67
+
lcpy gen -t neetcode-150 # Generate NeetCode 150 problems
**Note**: Some problem sets are partially covered. We're actively working to complete all collections. [Contributions welcome!](https://github.com/wisarootl/leetcode-py/blob/main/CONTRIBUTING.md)
You are given an integer array `nums`. You are initially positioned at the array's **first index**, and each element in the array represents your maximum jump length at that position.
12
+
13
+
Return `true`_if you can reach the last index, or_`false`_otherwise_.
14
+
15
+
## Examples
16
+
17
+
### Example 1:
18
+
19
+
```
20
+
Input: nums = [2,3,1,1,4]
21
+
Output: true
22
+
Explanation: Jump 1 step from index 0 to 1, then 3 steps to the last index.
23
+
```
24
+
25
+
### Example 2:
26
+
27
+
```
28
+
Input: nums = [3,2,1,0,4]
29
+
Output: false
30
+
Explanation: You will always arrive at index 3 no matter what. Its maximum jump length is 0, which makes it impossible to reach the last index.
0 commit comments