프로그래머스 연습문제 - 짝지어 제거하기 (level2)
def solution(s):
nonSequence = []
for i in s:
if i not in nonSequence or nonSequence[-1]!=i:
nonSequence.append(i)
else:
nonSequence.pop()
return int(not nonSequence)
갈 수록 한 문제 푸는데 걸리는 시간이 단축되고 있다! 그뤠잇~!
A=[]
if not A:
print("빈 배열")
A=[]
if len(A)==0:
print("빈 배열")
A=[]
if A==[]:
print("빈 배열")
q = True
print(int(q)) #1
print(int(!q)) #0