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 } n - a positive integer
3
+ * @return {number } - a positive integer
4
+ */
5
+ const reverseBits = ( n ) => {
6
+ return ;
7
+ }
Original file line number Diff line number Diff line change 16
16
- [ 22. Generate Parentheses] ( ./22/ )
17
17
- [ 53. Maximum Subarray] ( ./53/ )
18
18
- [ 121. Best Time to Buy and Sell Stock] ( ./121/ )
19
+ - [ 190. Reverse Bits] ( ./190/ )
19
20
- [ 191. Number of 1 Bits] ( ./191/ )
20
21
- [ 198. House Robber] ( ./198/ )
21
22
- [ 200. Number of Islands] ( ./200/ )
@@ -54,7 +55,7 @@ iex ./.../solution.ex
54
55
55
56
Quick create in bash
56
57
``` ssh
57
- chapter=268 && mkdir ./$chapter && touch ./$chapter/my_solution.js && touch ./$chapter/solution.js && alias x="node ./$chapter/my_solution.js"
58
+ chapter=190 && mkdir ./$chapter && touch ./$chapter/my_solution.js && touch ./$chapter/solution.js && alias x="node ./$chapter/my_solution.js"
58
59
```
59
60
60
61
<!--
You can’t perform that action at this time.
0 commit comments