Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- BAEKJOON
- 동적계획법
- DFS
- Flutter
- cos
- 코테
- codingtest
- 알고리즘
- AndroidStudio
- DART
- DFS와BFS
- Vue
- Python
- issue
- 분할정복
- cos pro
- 코딩테스트
- 안드로이드스튜디오
- 안드로이드
- C++
- django
- 파이썬
- vuejs
- android
- cos pro 1급
- 개발
- Algorithm
- 동적계획법과최단거리역추적
- 코드품앗이
- 백준
Archives
- Today
- Total
목록소용돌이수 python (1)
Development Artist
[COS Pro 1급, Python] 1차 5번 : 소용돌이 수
문제 유형 코딩 난이도 hard Note 1. 핵심 코드 : start, end = ori + 1, ori + 2 * (n - i) - 1 와 ori = end. nxn에서 왼쪽 위를 start로 하면, 오른쪽 아래를 end로 잡고, 마찬가지로 오른쪽 아래를 start로 하면, 왼쪽 위를 end로 잡는다. 1.1. n = 3, i = 0 일때 start : 1, end : 5 i = 1 일때 start : 6, end : 8 i = 2 일때 start : 9, end : 9 핵심코드를 떠올릴 수 있어야 한다. 즉, 안되면 암기... Code def solution(n): answer = 0 ori = 0 for i in range(n): start, end = ori + 1, ori + 2 * (n - ..
Algorithm/COS
2022. 2. 24. 21:28