without haste but without rest
[python] 다중 조건으로 정렬하기 - lambda 본문
https://stackoverflow.com/questions/20145842/python-sorting-by-multiple-criteria
연습하기 좋은 문제
https://programmers.co.kr/learn/courses/30/lessons/12915
n번째 문자로 정렬하되 n번째까지 전부 같으면 사전순으로 정렬한다.
고민좀 하다가.. n 번째 인덱스로 정렬하고 정렬 조건 후순위에 원래 문자열 자체를 주는 방법으로 해결할 수 있다는 것을 파악 함
def solution(strings: list, n):
strings.sort(key=lambda x: (x[n], x))
return strings
'ProgrammingLanguage > Python' 카테고리의 다른 글
[python] 비트마스크 기본 연산 정리 (0) | 2021.07.18 |
---|---|
[python] xor 연산자 ^= (0) | 2021.07.07 |
[python] 파이썬 이모지 보내기 (0) | 2021.06.23 |
슬랙 API 메세지 전송 템플릿 - python (0) | 2021.06.11 |
[python] csv 헤더 패스하기 (0) | 2021.05.11 |
Comments