문자열로 구성된 리스트 strings와, 정수 n이 주어졌을 때, 각 문자열의 인덱스 n번째 글자를 기준으로 오름차순 정렬하려 합니다. 예를 들어 strings가 ["sun", "bed", "car"]이고 n이 1이면 각 단어의 인덱스 1의 문자 "u", "e", "a"로 strings를 정렬합니다.
strings | n | return |
---|---|---|
["sun", "bed", "car"] | 1 | ["car", "bed", "sun"] |
["abce", "abcd", "cdx"] | 2 | ["abcd", "abce", "cdx"] |
def solution(strings, n):
answer = sorted(sorted(strings), key=lambda x: x[n])
return answer
sorted(iterable, *, key=None, reverse=False)
Return a new sorted list from the items in iterable.
strings
배열의 길이가 1이상 50이하라는 조건이 있었기 때문에 시간복잡도에 대해서 생각하지 않고 사용했다.