leetcode 937

김준오·2021년 11월 15일
0

알고리즘

목록 보기
64/91

문제

https://leetcode.com/problems/reorder-data-in-log-files/

내 풀이

class Solution:
    def reorderLogFiles(self, logs: List[str]) -> List[str]:
        sorted_logs = []
        for idx, log in enumerate(logs):
            log_content = list(log.split())
            identifier, content = log_content[0], ' '.join(log_content[1:])
            if content[0].isdigit(): # 숫자이면
                sorted_logs.append((1,0,0,idx,log))
                
            else : # 문자이면
                sorted_logs.append((0,content,identifier,idx,log))
                
        sorted_logs.sort(key=lambda x: (x[0],x[1],x[2],x[3]))
        print(sorted_logs)
        return ([log[4] for log in sorted_logs])
profile
jooooon

1개의 댓글

comment-user-thumbnail
2021년 12월 19일

I found that solution very popular and helpful:
https://www.youtube.com/watch?v=UbNU98fKV8o&ab_channel=EricProgramming

답글 달기

관련 채용 정보