You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@
30
30
| 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)|
31
31
| 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)|
32
32
| 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)|
33
34
| 1108 | Defanging an IP Address | Given a valid IP address, return a defanged version of that IP address. |[Solution](ip_defanging.js)|
34
35
| 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)|
35
36
| 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