TIL 23-06-04 백준 - 키보드 이벤트
1. 백준 - 키보드 이벤트 문제점 https://www.acmicpc.net/problem/17254 시도해 본 것들 N, M = 3, 5 input_list = [ ["1", "0", "A"], ["2", "1", "P"], ["1", "2", "L"], ["2", "4", "E"], ["3", "0", "P"], ] sorted_list1 = sorted(input_list, key=lambda x: int(x[0])) print(sorted_list1) sorted_list2 = sorted(input_list, key=lambda x: int(x[1])) print(sorted_list2) print(''.join([x[2] for x in sorted_list2])) 숫자와 영어가 섞인 inp..