일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- programmers
- 다익스트라
- 추석맞이 코딩챌린지
- Set
- 수학
- DateTime
- 파이썬
- Re
- 그리디
- BFS
- 재귀함수
- divmod
- backjoon
- 동적 계획법
- lambda
- Zip
- java
- KAKAO BLIND RECRUITMENT
- 위클리 챌린지
- python
- 백준
- heapq
- dfs
- 자바
- 정규식
- 정렬
- 이분탐색
- 프로그래머스
- Combinations
- 카카오
Archives
- Today
- Total
상상쓰
[프로그래머스] [3차] 파일명 정렬 본문
https://programmers.co.kr/learn/courses/30/lessons/17686
정규식을 이용하여 file 의 숫자를 기준으로 split 한다.
(\d+), 소괄호를 통해 숫자 형태의 문자열을 배열에 담아 [파일명(영문자), 파일명(숫자), .확장자] 로 전체 file 을 받아 file[0].lower() 과 int(file[1]) 로 오름차순으로 정렬한다.
import re
def solution(files):
answer = []
array = [re.split(r'(\d+)', file) for file in files]
array.sort(key = lambda x : (x[0].lower(), int(x[1])))
for i in array:
answer.append(''.join(i))
return answer
print(solution(['img12.png', 'img10.png', 'img02.png', 'img1.png', 'IMG01.GIF', 'img2.JPG'])) # ['img1.png', 'IMG01.GIF', 'img02.png', 'img2.JPG', 'img10.png', 'img12.png']
'Coding Test' 카테고리의 다른 글
[프로그래머스] 6주차_복서 정렬하기 (0) | 2021.09.06 |
---|---|
[프로그래머스] [3차] n진수 게임 (0) | 2021.09.05 |
[프로그래머스] [3차] 압축 (0) | 2021.09.03 |
[프로그래머스] [3차] 방금그곡 (0) | 2021.09.01 |
[프로그래머스] [1차] 다트 게임 (0) | 2021.08.31 |
Comments