LC_training(2)
易错点
forEach()函数体中,无法使用return终止运行,也不能使用break,continue. 应该使用其他语法.
1
2
3
4
5
6MyHashSet.prototype.contains = function(key) {
this.set.forEach(function(e){
if(e == key) return true;
});
return false;
};今天遇到一个还挺厉害的简单题解法:
有效的括号-20
给定一个只包括
'(',')','{','}','[',']'
的字符串,判断字符串是否有效。其实就是栈问题.leetcode-cn.com/problems/va…常规写法:
略
进阶写法:
1 | var isValid = function(s) { |