Code Kata8

김기현·2022년 3월 19일
0

code_kata

목록 보기
8/9
post-thumbnail

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
profile
피자, 코드, 커피를 사랑하는 피코커

0개의 댓글