GithubHelp home page GithubHelp logo

Comments (1)

guyuezhai avatar guyuezhai commented on September 17, 2024

解题思路

  1. 判断字符串的长度如果为奇数直接返回false
  2. 如果为偶数,则分别以成对扩号的左半部分为键,右半部分为值创建一个对象
  3. 把字符串转换成数组,并定义一个临时数组 result=[]
  4. 遍历数组如果临时数组的最后一项存在且等于当前项,则临时数组做出栈pop操作,否则把当前项的map值push放进数组
  5. 如果最终临时数组的长度大于零(说明部分括号不符合成对规则)返回false
  6. 如果临时数组长度为零 返回true
 * @param {string} s
 * @return {boolean}
 */
var isValid = function(s) {

    let len=s.length,result=[];
    if(len%2!==0){
        return false
    }else{
        const map={
            '{':'}',
            '(':')',
            '[':']'
        }
        s=s.split('')
        for(let i=0;i<len;i++){
            let length=result.length
           if(result[length-1] && result[length-1]==s[i]){
               result.pop()
           }else{
            result.push(map[s[i]])
           }
        }
    }
    if(result.length>0){
        return false
    }
    return true
};

from interviewsummary.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.