코드처리하기1 [Python] 코드 처리하기 먼저 mode가 0일때와 1일때로 조건이 나뉘어 집니다. def solution(code): ret = "" # 조건에 만족하는 리턴값 mode = 0 # 초기 mode는 0 for idx in range(len(code)): if mode == 0: if code[idx] != "1" and idx % 2 == 0: # 1도 아니고, 짝수일때 ret += code[idx] elif code[idx] == "1": # 모드 변경 mode = 1 else: if code[idx] != "1" and idx % 2 == 1: 1도 아니고, 홀수일때 ret += code[idx] elif code[idx] == "1": # 모드변경 mode = 0 if ret == "": return "EMPTY" else:.. 2023. 12. 15. 이전 1 다음