File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ Author :- Rishabh Jain <contact@rishabh1403.com>
3
+ Solution for :- https://leetcode.com/problems/to-lower-case/
4
+ blog for this code :- https://rishabh1403.com/posts/coding/leetcode/2020/03/leetcode-to-lower-case
5
+ youtube video :- https://youtu.be/jFi7-YgIXJQ
6
+ */
7
+
1
8
2
9
const isUpperCase = char => {
3
10
let ascii = char . charCodeAt ( 0 ) ;
Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ Solutions of all the questions from Leetcode in JavaScript.
28
28
29
29
- 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 )
30
30
31
+ - 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 )
32
+
31
33
- 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 )
32
34
33
35
- 1108.Defanging an IP Address - [ Question] ( https://leetcode.com/problems/defanging-an-ip-address/ ) | [ Source Code] ( https://github.com/rishabh1403/leetcode-javascript-solutions/blob/master/1101-1200/1108-defang-ip-address.js ) | [ Blog] ( https://rishabh1403.com/posts/coding/leetcode/2020/03/leetcode-defang-ip-address ) | [ Youtube Video] ( https://youtu.be/s_CepLCQHNY )
You can’t perform that action at this time.
0 commit comments