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
- Python
- TDD
- postreSQL
- pytest
- stateful
- ORM
- Git
- codecov
- HTTP 완벽 가이드
- utils
- was
- greedy
- 백준
- AWS
- Unit Testing
- algorithm
- SQL
- Django
- stateless
- Query
- Bruteforce
- Gunicorn
- Q objects
- dictionary
- combinations
- Stack
- ws
- permutations
- stack&que
- Programmers
Archives
- Today
- Total
목록백준 (17)
해피 코딩!
[백준] 덩치 7568번
link length = int(input()) lst = [0]* length stack = [0] * length # 모든 값을 넣은다. for index, value in enumerate(lst): weight, height = map(int, input().split(' ')) lst[index] = weight, height # 비교 for index, value in enumerate(lst): rank = 1 for indent_1, indent_1_value in enumerate(lst): if index == indent_1: continue if (value[0] < indent_1_value[0]) and (value[1]
알고리즘
2020. 12. 12. 07:06