Skip to content

Commit 7964b92

Browse files
Update README.md
1 parent 6d52e5e commit 7964b92

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
| 709 | To Lower Case | Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase. | [Solution](to_lower_case.js) |
3131
| 771 | Jewels and Stones | You're given strings J representing the types of stones that are jewels, and S representing the stones you have. Each character in S is a type of stone you have. You want to know how many of the stones you have are also jewels. | [Solution](jewels_and_stones.js) |
3232
| 922 | Sort Array By Parity II | Given an array of integers nums, half of the integers in nums are odd, and the other half are even. Sort the array so that whenever nums[i] is odd, i is odd, and whenever nums[i] is even, i is even. Return any answer array that satisfies this condition. | [Solution](sort_array_parity.js) |
33+
| 933 | Number of Recent Calls | Return the number of requests that have happened in the inclusive range | [Solution](number_of_recent_calls.js) |
3334
| 1108 | Defanging an IP Address | Given a valid IP address, return a defanged version of that IP address. | [Solution](ip_defanging.js) |
3435
| 1207 | Unique Number of Occurrences | Given an array of integers, write a function that returns true if and only if the number of occurrences of each value in the array is unique. | [Solution](unique_occurrences.js) |
3536
| 1281 | Subtract the Product and Sum of Digits of an Integer | Given an integer, return the difference between the product of its digits and the sum of its digits. | [Solution](subtract_product_and_sum_integer.js) |

0 commit comments

Comments
 (0)