반응형
출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges
import re
def solution(files):
reg = [re.split(r'(\d+)', s) for s in files]
reg.sort(key = lambda x: (x[0].lower(), int(x[1])))
return [''.join(s) for s in reg]
참고: https://stackoverflow.com/questions/430079/how-to-split-strings-into-text-and-number
반응형
'프로그래머스 > level 2' 카테고리의 다른 글
[프로그래머스] 방문 길이 (0) | 2022.01.04 |
---|---|
[프로그래머스] 방금그곡 (0) | 2022.01.04 |
[프로그래머스] 압축 (0) | 2021.12.28 |
[프로그래머스] 가장 큰 정사각형 찾기 (0) | 2021.12.27 |
[프로그래머스] 구명보트 (0) | 2021.12.20 |