def solution(strings, n):
strings = sorted(strings)
answer = sorted(strings, key=lambda x:x[n])
return answer
728x90
반응형
LIST
'알고리즘' 카테고리의 다른 글
[프로그래머스] 헤비 유저가 소유한 장소 (0) | 2023.10.09 |
---|---|
[프로그래머스] 숫자 문자열과 영단어 (0) | 2023.10.09 |
[프로그래머스] K번째 수 (0) | 2023.10.09 |
[프로그래머스] 가장 가까운 같은 글자 (0) | 2023.10.09 |
[프로그래머스] 푸드 파이트 대회 (0) | 2023.10.09 |