Code Kata8
def is_valid(string):
a = '()'
b = '{}'
c = '[]'
while string:
if a in string :
string = string.replace(a, '')
elif b in string :
string = string.replace(b, '')
elif c in string :
string = string.replace(c, '')
else:
return False
return True
Reference
この問題について(Code Kata8), 我々は、より多くの情報をここで見つけました https://velog.io/@tritny6516/Code-Kata8テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol