728x90
https://programmers.co.kr/learn/courses/30/lessons/12915
def solution(strings, n):
# 인덱스 n의 문자가 같으면 사전순
strings = sorted(strings, key = lambda x:(x[n],x))
return strings
python의 sorted에서 key는 정말 유용하게 쓰이고 있다.
'알고리즘 문제 풀이 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 이상한 문자 만들기 python (0) | 2022.04.02 |
---|---|
[프로그래머스] 행렬의 덧셈 python (0) | 2022.04.02 |
[프로그래머스] 같은 숫자는 싫어 python (0) | 2022.04.02 |
[프로그래머스] 최소직사각형 python (0) | 2022.04.01 |
[프로그래머스] 2016년 python (0) | 2022.04.01 |