Skip to content

Commit 57becd1

Browse files
committed
add 7 new questions
1 parent faa1e46 commit 57becd1

8 files changed

+14
-14
lines changed

1301-1400/1389-create-target-array-in-the-given-order.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Author :- Rishabh Jain <contact@rishabh1403.com>
33
Solution for :- https://leetcode.com/problems/create-target-array-in-the-given-order/
4-
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/
4+
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/2020/05/create-target-array-in-the-given-order/
55
youtube video :- https://youtu.be/vZ6VpUJk7CU
66
*/
77

201-300/205-isomorphic-strings.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Author :- Rishabh Jain <contact@rishabh1403.com>
33
Solution for :- https://leetcode.com/problems/isomorphic-strings/
4-
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/
4+
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/2020/05/leetcode-isomorphic-strings
55
youtube video :- https://youtu.be/h0O_iPBhxTs
66
*/
77

301-400/345-reverse-vowels-of-a-string.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Author :- Rishabh Jain <contact@rishabh1403.com>
33
Solution for :- https://leetcode.com/problems/reverse-vowels-of-a-string/
4-
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/
4+
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/2020/05/leetcode-reverse-vowels-of-a-string
55
youtube video :- https://youtu.be/5g6iV76aR-E
66
*/
77

301-400/349-intersection-of-two-arrays.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Author :- Rishabh Jain <contact@rishabh1403.com>
33
Solution for :- https://leetcode.com/problems/intersection-of-two-arrays/
4-
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/
4+
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/2020/05/leetcode-intersection-of-two-arrays
55
youtube video :- https://youtu.be/3OBr0wzEtWE
66
*/
77

301-400/374-guess-number-higher-or-lower.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Author :- Rishabh Jain <contact@rishabh1403.com>
33
Solution for :- https://leetcode.com/problems/guess-number-higher-or-lower/
4-
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/
4+
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/2020/05/leetcode-guess-number-higher-or-lower
55
youtube video :- https://youtu.be/h0uL59Z9Hoc
66
*/
77

301-400/383-ransom-note.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Author :- Rishabh Jain <contact@rishabh1403.com>
33
Solution for :- https://leetcode.com/problems/ransom-note/
4-
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/
4+
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/2020/05/leetcode-ransom-note
55
youtube video :- https://youtu.be/PkxRhIsvvf8
66
*/
77

301-400/387-first-unique-character-in-a-string.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Author :- Rishabh Jain <contact@rishabh1403.com>
33
Solution for :- https://leetcode.com/problems/first-unique-character-in-a-string/
4-
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/
4+
blog for this code :- https://rishabh1403.com/posts/coding/leetcode/2020/05/first-unique-character-in-a-string/
55
youtube video :- https://youtu.be/rxVNTwf_zfg
66
*/
77

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Solutions of all the questions from Leetcode in JavaScript.
2828

2929
- 169.Majority Element - [Question](https://leetcode.com/problems/majority-element/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/101-200/169-majority-element.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/04/leetcode-majority-element) | [Youtube Video](https://youtu.be/p0vvs4Gq8qY)
3030

31-
- 205.Isomorphic Strings - [Question]() | [Source Code]() | [Blog]() | [Youtube Video]()
31+
- 205.Isomorphic Strings - [Question](https://leetcode.com/problems/isomorphic-strings/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/201-300/205-isomorphic-strings.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/05/leetcode-isomorphic-strings) | [Youtube Video](https://youtu.be/h0O_iPBhxTs)
3232

3333
- 217.Contains Duplicate - [Question](https://leetcode.com/problems/contains-duplicate/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/201-300/217-contains-duplicate.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/03/leetcode-contains-duplicate) | [Youtube Video](https://youtu.be/cuR5uyV8snc)
3434

@@ -40,15 +40,15 @@ Solutions of all the questions from Leetcode in JavaScript.
4040

4141
- 344.Reverse String - [Question](https://leetcode.com/problems/reverse-string/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/301-400/344-reverse-string.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/04/leetcode-reverse-string) | [Youtube Video](https://youtu.be/8j24rPjGBwU)
4242

43-
- 345.Reverse Vowels of a String - [Question]() | [Source Code]() | [Blog]() | [Youtube Video]()
43+
- 345.Reverse Vowels of a String - [Question](https://leetcode.com/problems/reverse-vowels-of-a-string/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/301-400/345-reverse-vowels-of-a-string.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/05/leetcode-reverse-vowels-of-a-string) | [Youtube Video](https://youtu.be/5g6iV76aR-E)
4444

45-
- 349.Intersection of Two Arrays - [Question]() | [Source Code]() | [Blog]() | [Youtube Video]()
45+
- 349.Intersection of Two Arrays - [Question](https://leetcode.com/problems/intersection-of-two-arrays/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/301-400/349-intersection-of-two-arrays.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/05/leetcode-intersection-of-two-arrays) | [Youtube Video](https://youtu.be/3OBr0wzEtWE)
4646

47-
- 374.Guess Number Higher or Lower - [Question]() | [Source Code]() | [Blog]() | [Youtube Video]()
47+
- 374.Guess Number Higher or Lower - [Question](https://leetcode.com/problems/guess-number-higher-or-lower/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/301-400/374-guess-number-higher-or-lower.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/05/leetcode-guess-number-higher-or-lower) | [Youtube Video](https://youtu.be/h0uL59Z9Hoc)
4848

49-
- 383.Ransom Note - [Question]() | [Source Code]() | [Blog]() | [Youtube Video]()
49+
- 383.Ransom Note - [Question](https://leetcode.com/problems/ransom-note/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/301-400/383-ransom-note.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/05/leetcode-ransom-note) | [Youtube Video](https://youtu.be/PkxRhIsvvf8)
5050

51-
- 387.First Unique Character in a String - [Question]() | [Source Code]() | [Blog]() | [Youtube Video]()
51+
- 387.First Unique Character in a String - [Question](https://leetcode.com/problems/first-unique-character-in-a-string/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/301-400/387-first-unique-character-in-a-string.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/05/first-unique-character-in-a-string/) | [Youtube Video](https://youtu.be/rxVNTwf_zfg)
5252

5353
- 509.Fibonacci Number - [Question](https://leetcode.com/problems/fibonacci-number/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/501-600/509-fibonacci-number.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/04/leetcode-fibonacci-number) | [Youtube Video](https://youtu.be/iyyhQfO_KKY)
5454

@@ -76,4 +76,4 @@ Solutions of all the questions from Leetcode in JavaScript.
7676

7777
- 1365.How Many Numbers Are Smaller Than the Current Number - [Question](https://leetcode.com/problems/how-many-numbers-are-smaller-than-the-current-number/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/1301-1400/1365-how-many-numbers-smaller-than-current-number.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/03/leetcode-how-many-numbers-smaller-than-current-number) | [Youtube Video](https://youtu.be/a2RWy9kqOhs)
7878

79-
- 1389.Create Target Array in the Given Order - [Question]() | [Source Code]() | [Blog]() | [Youtube Video]()
79+
- 1389.Create Target Array in the Given Order - [Question](https://leetcode.com/problems/create-target-array-in-the-given-order/) | [Source Code](https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/1301-1400/1389-create-target-array-in-the-given-order.js) | [Blog](https://rishabh1403.com/posts/coding/leetcode/2020/05/create-target-array-in-the-given-order/) | [Youtube Video](https://youtu.be/vZ6VpUJk7CU)

0 commit comments

Comments
 (0)