Skip to content

Instantly share code, notes, and snippets.

@qkreltms
Created March 30, 2018 13:31
Show Gist options
  • Select an option

  • Save qkreltms/fddb1ee55bef239e1454cc80a9a99cbc to your computer and use it in GitHub Desktop.

Select an option

Save qkreltms/fddb1ee55bef239e1454cc80a9a99cbc to your computer and use it in GitHub Desktop.
백준9012번 easy버전
def f(str):
while "()" in str:
str = str.replace("()", "")
if len(str) >= 1:
print("NO")
else:
print("YES")
for _ in range(int(input())):
f(input())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment