File tree
Expand file treeCollapse file tree
148 files changed
+459
-466
lines changedFilter options
- [0000][common]/src
- [0001][Two Sum]/src
- [0010][Regular Expression Matching]/src
- [0013][Roman To Integer]/src
- [0014][Longest Common Prefix]/src
- [0015][3 Sum]/src
- [0016][3 Sum Closest]/src
- [0018][4 Sum]/src
- [0022][Generate Parentheses]/src
- [0023][Merge K Sorted Lists]/src
- [0032][Longest Valid Parentheses]/src
- [0033][Search In Rotated Sorted Array]/src
- [0037][Sudoku Solver]/src
- [0039][Combination Sum]/src
- [0041][First Missing Positive]/src
- [0042][Trapping Rain Water]/src
- [0046][Permutations]/src
- [0047][Permutations II]/src
- [0049][Group Anagrams]/src
- [0055][Jump Game]/src
- [0056][Merge Intervals]/src
- [0057][Insert Interval]/src
- [0070][Climbing Stairs]/src
- [0073][Set Matrix Zeroes]/src
- [0079][Word Search]/src
- [0080][Remove Duplicates from Sorted Array II]/src
- [0081][Search In Rotated Sorted Array II]/src
- [0086][Partition List]/src
- [0089][Gray Code]/src
- [0090][Subsets II]/src
- [0092][Reverse Linked List II]/src
- [0095][Unique Binary Search Trees II]/src
- [0096][Unique Binary Search Trees]/src
- [0100][Same Tree]/src
- [0106][Construct Binary Tree From Inorder And Postorder Traversal]/src
- [0114][Flatten Binary Tree To Linked List]/src
- [0126][Word Ladder II]/src
- [0127][Word Ladder]/src
- [0130][Surrounded Regions]/src
- [0131][Palindrome Partitioning]/src
- [0136][Single Number]/src
- [0138][Copy List With Random Pointer]/src
- [0141][Linked List Cycle]/src
- [0142][Linked List Cycle II]/src
- [0143][Reorder List]/src
- [0150][Evaluate Reverse Polish Notation]/src
- [0160][Intersection of Two Linked Lists]/src
- [0167][Two Sum II - Input array is sorted]/src
- [0173][Binary Search Tree Iterator]/src
- [0191][Number Of 1 Bits]/src
- [0200][Number Of Islands]/src
- [0202][Happy Number ]/src
- [0206][Reverse Linked List]/src
- [0207][Course Schedule]/src
- [0215][Kth Largest Element In An Array]/src
- [0216][Combination Sum III]/src
- [0217][Contains Duplicate ]/src
- [0219][Contains Duplicate II]/src
- [0223][Rectangle Area]/src
- [0232][Implement Queue using Stacks]/src
- [0234][Palindrome Linked List]/src
- [0235][Lowest Common Ancestor of a Binary Search Tree]/src
- [0237][Delete Node in a Linked List]/src
- [0238][Product of Array Except Self]/src
- [0240][Search a 2D Matrix II]/src
- [0241][Different Ways to Add Parentheses]/src
- [0278][First Bad Version]/src
- [0292][Nim Game]/src
- [0303][Range Sum Query - Immutable]/src
- [0326][Power of Three]/src
- [0338][Counting Bits ]/src
- [0344][Reverse String]/src
- [0347][Top K Frequent Elements]/src
- [0371][Sum of Two Integers]/src
- [0374][Guess Number Higher or Lower]/src
- [0387][First Unique Character in a String]/src
- [0389][Find the Difference]/src
- [0392][Is Subsequence]/src
- [0400][Nth Digit]/src
- [0401][Binary Watch]/src
- [0404][Sum of Left Leaves]/src
- [0405][Convert a Number to Hexadecimal]/src
- [0409][Longest Palindrome]/src
- [0412][Fizz Buzz]/src
- [0415][Add Strings]/src
- [0419][Battleships in a Board]/src
- [0427][Construct Quad Tree]/src
- [0429][N-ary Tree Level Order Traversal]/src
- [0434][Number of Segments in a String]/src
- [0437][Path Sum III]/src
- [0438][Find All Anagrams in a String]/src
- [0441][Arranging Coins]/src
- [0442][Find All Duplicates in an Array]/src
- [0443][String Compression]/src
- [0447][Number of Boomerangs]/src
- [0455][Assign Cookies]/src
- [0461][Hamming Distance]/src
- [0463][Island Perimeter]/src
- [0475][Heaters]/src
- [0476][Number Complement]/src
- [0482][License Key Formatting]/src
- [0492][Construct the Rectangle]/src
- [0500][Keyboard Row]/src
- [0501][Find Mode in Binary Search Tree]/src
- [0504][Base 7]/src
- [0561][Array Partition I]/src
- [0617][Merge Two Binary Trees]/src
- [0969][Pancake Sorting]/src
- [0979][Distribute Coins in Binary Tree]/src
- [1089][Duplicate Zeros]/src
- [1108][Defanging an IP Address]/src
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Expand file treeCollapse file tree
148 files changed
+459
-466
lines changed[0000][common]/src/MaxSubArray.java
Copy file name to clipboardExpand all lines: [0000][common]/src/MaxSubArray.java+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
7 | 7 |
|
8 | 8 |
|
9 | 9 |
|
10 |
| - |
| 10 | + |
11 | 11 |
|
12 | 12 |
|
13 | 13 |
|
|
[0001][Two Sum]/src/Main.java
Copy file name to clipboardExpand all lines: [0001][Two Sum]/src/Main.java+2-1Lines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
25 | 25 |
|
26 | 26 |
|
27 | 27 |
|
| 28 | + |
28 | 29 |
|
29 | 30 |
|
30 |
| - |
| 31 | + |
31 | 32 |
|
32 | 33 |
|
33 | 34 |
|
|
[0001][Two Sum]/src/Solution.java
Copy file name to clipboardExpand all lines: [0001][Two Sum]/src/Solution.java+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
62 | 62 |
|
63 | 63 |
|
64 | 64 |
|
65 |
| - |
| 65 | + |
66 | 66 |
|
67 | 67 |
|
68 | 68 |
|
|
[0010][Regular Expression Matching]/src/Solution.java
Copy file name to clipboardExpand all lines: [0010][Regular Expression Matching]/src/Solution.java+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
44 | 44 |
|
45 | 45 |
|
46 | 46 |
|
47 |
| - |
| 47 | + |
48 | 48 |
|
49 | 49 |
|
50 | 50 |
|
|
[0013][Roman To Integer]/src/Solution.java
Copy file name to clipboardExpand all lines: [0013][Roman To Integer]/src/Solution.java+18-9Lines changed: 18 additions & 9 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
34 | 34 |
|
35 | 35 |
|
36 | 36 |
|
37 |
| - |
| 37 | + |
38 | 38 |
|
39 | 39 |
|
40 | 40 |
|
41 | 41 |
|
42 | 42 |
|
| 43 | + |
43 | 44 |
|
44 | 45 |
|
45 |
| - |
46 |
| - |
47 |
| - |
48 |
| - |
49 |
| - |
50 |
| - |
51 |
| - |
52 |
| - |
| 46 | + |
| 47 | + |
| 48 | + |
| 49 | + |
| 50 | + |
| 51 | + |
| 52 | + |
| 53 | + |
| 54 | + |
| 55 | + |
| 56 | + |
| 57 | + |
| 58 | + |
| 59 | + |
| 60 | + |
| 61 | + |
53 | 62 |
|
54 | 63 |
|
55 | 64 |
|
[0014][Longest Common Prefix]/src/Main.java
Copy file name to clipboardExpand all lines: [0014][Longest Common Prefix]/src/Main.java+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
15 | 15 |
|
16 | 16 |
|
17 | 17 |
|
18 |
| - |
| 18 | + |
19 | 19 |
|
20 | 20 |
|
[0014][Longest Common Prefix]/src/Solution.java
Copy file name to clipboardExpand all lines: [0014][Longest Common Prefix]/src/Solution.java+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
46 | 46 |
|
47 | 47 |
|
48 | 48 |
|
49 |
| - |
| 49 | + |
50 | 50 |
|
51 | 51 |
|
52 | 52 |
|
|
[0015][3 Sum]/src/Main.java
Copy file name to clipboardExpand all lines: [0015][3 Sum]/src/Main.java+1-1Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
[0015][3 Sum]/src/Solution.java
Copy file name to clipboardExpand all lines: [0015][3 Sum]/src/Solution.java+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
73 | 73 |
|
74 | 74 |
|
75 | 75 |
|
76 |
| - |
| 76 | + |
77 | 77 |
|
78 | 78 |
|
79 | 79 |
|
|
[0016][3 Sum Closest]/src/Main.java
Copy file name to clipboardExpand all lines: [0016][3 Sum Closest]/src/Main.java+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
7 | 7 |
|
8 | 8 |
|
9 | 9 |
|
10 |
| - |
| 10 | + |
11 | 11 |
|
12 | 12 |
|
[0016][3 Sum Closest]/src/Solution.java
Copy file name to clipboardExpand all lines: [0016][3 Sum Closest]/src/Solution.java+6-8Lines changed: 6 additions & 8 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
1 |
| - |
2 | 1 |
|
3 |
| - |
4 | 2 |
|
5 | 3 |
|
6 | 4 |
|
| ||
47 | 45 |
|
48 | 46 |
|
49 | 47 |
|
50 |
| - |
| 48 | + |
51 | 49 |
|
52 | 50 |
|
53 | 51 |
|
| ||
76 | 74 |
|
77 | 75 |
|
78 | 76 |
|
79 |
| - |
80 |
| - |
81 |
| - |
| 77 | + |
| 78 | + |
| 79 | + |
82 | 80 |
|
83 | 81 |
|
84 | 82 |
|
85 | 83 |
|
86 | 84 |
|
87 |
| - |
| 85 | + |
88 | 86 |
|
89 | 87 |
|
90 | 88 |
|
91 | 89 |
|
92 | 90 |
|
93 |
| - |
| 91 | + |
94 | 92 |
|
95 | 93 |
|
96 | 94 |
|
|
[0018][4 Sum]/src/Solution.java
Copy file name to clipboardExpand all lines: [0018][4 Sum]/src/Solution.java+2-2Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
49 | 49 |
|
50 | 50 |
|
51 | 51 |
|
52 |
| - |
| 52 | + |
53 | 53 |
|
54 | 54 |
|
55 | 55 |
|
| ||
98 | 98 |
|
99 | 99 |
|
100 | 100 |
|
101 |
| - |
| 101 | + |
102 | 102 |
|
103 | 103 |
|
104 | 104 |
|
|
[0022][Generate Parentheses]/src/Solution.java
Copy file name to clipboardExpand all lines: [0022][Generate Parentheses]/src/Solution.java-1Lines changed: 0 additions & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
1 | 1 |
|
2 |
| - |
3 | 2 |
|
4 | 3 |
|
5 | 4 |
|
|
[0023][Merge K Sorted Lists]/src/Solution.java
Copy file name to clipboardExpand all lines: [0023][Merge K Sorted Lists]/src/Solution.java-2Lines changed: 0 additions & 2 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
1 |
| - |
2 | 1 |
|
3 |
| - |
4 | 2 |
|
5 | 3 |
|
6 | 4 |
|
|
[0032][Longest Valid Parentheses]/src/Solution.java
Copy file name to clipboardExpand all lines: [0032][Longest Valid Parentheses]/src/Solution.java-2Lines changed: 0 additions & 2 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
1 |
| - |
2 |
| - |
3 | 1 |
|
4 | 2 |
|
5 | 3 |
|
|
[0033][Search In Rotated Sorted Array]/src/Main.java
Copy file name to clipboardExpand all lines: [0033][Search In Rotated Sorted Array]/src/Main.java+2-3Lines changed: 2 additions & 3 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
| ||
4 | 4 |
|
5 | 5 |
|
6 | 6 |
|
7 |
| - |
8 |
| - |
9 |
| - |
| 7 | + |
| 8 | + |
10 | 9 |
|
11 | 10 |
|
12 | 11 |
|
|
0 commit comments