Skip to content

Commit 9c027a8

Browse files
committed
add 709 js solution
1 parent 18e4f39 commit 9c027a8

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
|717|[1-bit and 2-bit Characters](https://leetcode.com/problems/1-bit-and-2-bit-characters/) | |Easy|
6464
|714|[Best Time to Buy and Sell Stock with Transaction Fee](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-transaction-fee) | |Medium|
6565
|712|[Minimum ASCII Sum for Two Strings](https://leetcode.com/problems/minimum-ascii--sum-for-two-strings/) | |Medium|
66+
|709|[To Lower Case](https://leetcode.com/problems/to-lower-case/)| [js](./algorithms/toLowerCase/Solution.js)
6667
|704|[Binary Search](https://leetcode.com/problems/binary-search/)| [Java](./algorithms/binarySearch/Solution.java)
6768
|701|[Insert Into A Binary Search Tree](https://leetcode.com/problems/insert-into-a-binary-search-tree/)| [Java](./algorithms/insertIntoABST/Solution.java)
6869
|700|[Search In A Binary Search Tree](https://leetcode.com/problems/search-in-a-binary-search-tree/)| [Java](./algorithms/searchInABST/Solution.java)

algorithms/toLowerCase/Solution.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* @param {string} s
3+
* @return {string}
4+
*/
5+
var toLowerCase = function(s) {
6+
return s.toLowerCase()
7+
};

0 commit comments

Comments
 (0)