CodeNewbie Community 🌱

Cover image for Python 🐍 challenge_25βš”οΈ
Mahmoud_Essam
Mahmoud_Essam

Posted on

Python 🐍 challenge_25βš”οΈ

Valid Braces

  • Write a function that takes a string of braces, and determines if the order of the braces is valid.
  • It should return true if the string is valid, and false if it's invalid.
  • All input strings will be nonempty, and will only consist of parentheses, brackets and curly braces: ()[]{}.
  • What is considered Valid?
  • A string of braces is considered valid if all braces are matched with the correct brace.

Examples:

    "(){}[]"   =>  True
    "([{}])"   =>  True
    "(}"       =>  False
    "[(])"     =>  False
    "[({})](]" =>  False
Enter fullscreen mode Exit fullscreen mode
Task URL: Link

My Solution:

def validBraces(string):

    brackets = ['()', '{}', '[]']
    while any(x in string for x in brackets):
        for br in brackets:
            string = string.replace(br, '')
    return not string
Enter fullscreen mode Exit fullscreen mode

Another Solution:

def validBraces(string):

    brackets = ['()', '{}', '[]']
    while any(x in string for x in brackets):
        for br in brackets:
            string = string.replace(br, '')
    return not string
Enter fullscreen mode Exit fullscreen mode

Code Snapshot:

Image description

Image description

Learn Python

Python top free courses from CourseraπŸπŸ’―πŸš€

πŸŽ₯

Connect with Me 😊

πŸ”— Links

linkedin

twitter

Top comments (0)