Skip to content

Commit cde9798

Browse files
committed
add question 709
1 parent 517879a commit cde9798

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

701-800/709-to-lower-case.js

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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+
18

29
const isUpperCase = char => {
310
let ascii = char.charCodeAt(0);

README.md

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

2929
- 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)
3030

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+
3133
- 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)
3234

3335
- 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)

0 commit comments

Comments
 (0)