Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4c184c7

Browse files
committed
draft of q 344 and 509
1 parent 004d6a1 commit 4c184c7

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

301-400/344-reverse-string.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*
2+
Author :- Rishabh Jain <contact@rishabh1403.com>
3+
Solution for :- https://leetcode.com/problems/reverse-string/
4+
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/2020/04/leetcode-reverse-string
5+
youtube video :- https://youtu.be/I6AUMvi13fc
6+
*/
7+
8+
19
var reverseString = function (s) {
210
let left = 0, right = s.length - 1;
311

501-600/509-fibonacci-number.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
Author :- Rishabh Jain <contact@rishabh1403.com>
3+
Solution for :- https://leetcode.com/problems/fibonacci-number/
4+
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/2020/04/leetcode-fibonacci-number
5+
youtube video :- https://youtu.be/I6AUMvi13fc
6+
*/
17

28

39
// Recursive solution

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ Solutions of all the questions from Leetcode in JavaScript.
3434

3535
- 268.Missing Number - [Question](https://leetcode.com/problems/missing-number/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/201-300/268-missing-number.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/03/leetcode-missing-number) | [Youtube Video](https://youtu.be/I6AUMvi13fc)
3636

37+
- 344.Reverse String - [Question](https://leetcode.com/problems/reverse-string/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/201-300/268-missing-number.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/04/leetcode-reverse-string) | [Youtube Video]()
38+
39+
- 509.Fibonacci Number - [Question](https://leetcode.com/problems/fibonacci-number/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/201-300/268-missing-number.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/04/leetcode-fibonacci-number) | [Youtube Video]()
40+
3741
- 709.To Lower Case - [Question](https://leetcode.com/problems/to-lower-case/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/701-800/709-to-lower-case.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/03/leetcode-to-lower-case) | [Youtube Video](https://youtu.be/jFi7-YgIXJQ)
3842

3943
- 771.Jewels and Stones - [Question](https://leetcode.com/problems/jewels-and-stones/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/701-800/771-jewels-and-stones.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/03/leetcode-jewels-and-stones) | [Youtube Video](https://youtu.be/cNVJZF5UT1w)

0 commit comments

Comments
 (0)