Skip to content

Instantly share code, notes, and snippets.

@adammenges
Last active December 22, 2015 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adammenges/6478564 to your computer and use it in GitHub Desktop.
Save adammenges/6478564 to your computer and use it in GitHub Desktop.
def validParentheses? str
a = []
str.each_char do |x|
if x == '('
a.push x
elsif x == ')'
return false if a.pop == nil
end
end
a.empty?
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment