<Hackerrank 문제풀이: 파이썬> Lists
간단한 문제이다. 단순히 입력 받은 command와 숫자를 구분해서 command에 다라 알맞게 구현되게끔 일일이 짜면 된다: if __name__ == '__main__': N = int(input()) final_list = [] for i in range(N): command, *numbers = input().split() number = list(map(int, numbers)) if command == 'insert': final_list.insert(number[0], number[1]) elif command == 'append': final_list.append(number[0]) elif command == 'remove': try: final_list.remove(number[0]) ..