两数之和
1 | const twoSum = (nums, target) => { |
回文数
1 | const isPalindrome = function(x) { |
罗马数字转整数
1 | const romanToInt = function(s) { |
最长公共前缀
1 | const longestCommonPrefix = function(strs) { |
删除有序数组中的重复项
1 | const removeDuplicates = function(nums) { |
移除元素
1 | const removeElement = function(nums,val) { |