내 풀이 (실패)
def solution(strings, n):
word_dic = {}
for i in sorted(strings):
word_dic[i] = i[n]
result = sorted(word_dic.keys(), key=lambda x: x[1])
return result
다른 방법
def solution(strings, n):
return sorted(sorted(strings), key=lambda x: x[n])
'Engineering WIKI > Programmers' 카테고리의 다른 글
[프로그래머스] 소수 찾기 (0) | 2022.04.19 |
---|---|
[프로그래머스] 문자열 다루기 기본 (0) | 2022.04.15 |
[프로그래머스] 문자열 내림차순으로 배치하기 (0) | 2022.04.15 |
[프로그래머스] 문자열 내 p와 y의 개수 (0) | 2022.04.15 |
[프로그래머스] 두 정수 사이의 합 (0) | 2022.04.14 |
[프로그래머스] 나누어 떨어지는 숫자 배열 (0) | 2022.04.12 |
[프로그래머스] 같은 숫자는 싫어 (0) | 2022.04.11 |
[프로그래머스] 다트 게임 (0) | 2022.04.11 |