문제 출처 : leetcode.com/problems/reorder-data-in-log-files/ Reorder Data in Log Files - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 해석 : 로그 파일을 정해진 규칙 대로 재 정렬하는 문제이다. 문제 풀이 : 파이썬 기본 내장 Sort 함수의 정렬 방법을 알면 쉽게 풀 수 있다. 풀이 코드 from typing import List class Solution: def reorderLogFil..