File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * @param {number[] } nums
3
+ * @return {number[] }
4
+ */
5
+ const smallerNumbersThanCurrent = ( nums ) => {
6
+
7
+ } ;
Original file line number Diff line number Diff line change 64
64
- [ 647. Palindromic Substrings] ( ./647/ )
65
65
- [ 771. Jewels and Stones] ( ./771/ )
66
66
- [ 997. Find the Town Judge] ( ./997/ )
67
+ - [ 1365. How Many Numbers Are Smaller Than the Current Number] ( ./1365/ )
67
68
- [ 1512. Number of Good Pairs] ( ./1512/ )
68
69
- [ 1791. Find Center of Star Graph] ( ./1791/ )
69
70
- [ 1909. Remove One Element to Make the Array Strictly Increasing] ( ./1909/ )
@@ -111,7 +112,7 @@ Batch create:
111
112
NOTE: JS IS HERE
112
113
-->
113
114
``` ssh
114
- chapter=135 && mkdir ./$chapter && touch ./$chapter/my_solution.js && touch ./$chapter/solution.js && alias x="node ./$chapter/my_solution.js"
115
+ chapter=1365 && mkdir ./$chapter && touch ./$chapter/my_solution.js && touch ./$chapter/solution.js && alias x="node ./$chapter/my_solution.js"
115
116
```
116
117
> then you can use ` x ` for quick debug.
117
118
You can’t perform that action at this time.
0 commit comments