Skip to content

Commit b2e8214

Browse files
committed
✨ [1365] How Many Numbers Are Smaller Than the Current Number
1 parent 8baaa32 commit b2e8214

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

1365/my_solution.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* @param {number[]} nums
3+
* @return {number[]}
4+
*/
5+
const smallerNumbersThanCurrent = (nums) => {
6+
7+
};

1365/solution.js

Whitespace-only changes.

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
- [647. Palindromic Substrings](./647/)
6565
- [771. Jewels and Stones](./771/)
6666
- [997. Find the Town Judge](./997/)
67+
- [1365. How Many Numbers Are Smaller Than the Current Number](./1365/)
6768
- [1512. Number of Good Pairs](./1512/)
6869
- [1791. Find Center of Star Graph](./1791/)
6970
- [1909. Remove One Element to Make the Array Strictly Increasing](./1909/)
@@ -111,7 +112,7 @@ Batch create:
111112
NOTE: JS IS HERE
112113
-->
113114
```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"
115116
```
116117
> then you can use `x` for quick debug.
117118

0 commit comments

Comments
 (0)