Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- TDD
- Bruteforce
- permutations
- stack&que
- stateless
- Python
- AWS
- Gunicorn
- dictionary
- ORM
- codecov
- combinations
- HTTP 완벽 가이드
- postreSQL
- was
- Programmers
- Django
- Unit Testing
- utils
- 백준
- stateful
- algorithm
- greedy
- ws
- Query
- SQL
- Git
- Stack
- pytest
- Q objects
Archives
- Today
- Total
목록sort (1)
해피 코딩!
[백준] 10814 나이순 정렬
문제 링크 lst = [] for i in range(int(input())): age, name = input().split(' ') lst.append([int(age), name, i]) for i in sorted(lst, key = lambda x:(x[0], x[2])): print(i[0], i[1]) python은 내장 정렬 라이브러리로 list_data_type_var.sort()와 sorted(iterable_data_type_var)를 지원하며 key를 통해 정렬하는 순서를 설정할 수 있다. .sort(): 참조하는 리스트의 메모리 값 자체가 정렬이 된다. 리스트 데이터 타입에서만 지원 sorted(): 정렬된 값을 돌려준다. iterable 한 데이터 타입 자체를 지원..
알고리즘
2020. 12. 28. 23:18