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
- 안드로이드
- DFS
- 코딩테스트
- 코테
- 개발
- DFS와BFS
- issue
- DART
- BAEKJOON
- 동적계획법과최단거리역추적
- codingtest
- 파이썬
- cos pro 1급
- 분할정복
- Flutter
- 알고리즘
- Python
- cos
- android
- vuejs
- Algorithm
- cos pro
- 동적계획법
- AndroidStudio
- 안드로이드스튜디오
- django
- 백준
- Vue
- C++
- 코드품앗이
Archives
- Today
- Total
목록cos 만났을때 최대인 경우 python (1)
Development Artist
[COS Pro 1급, Python] 6차 6번 : 만났을때 최대인 경우
문제 유형 한줄 수정(디버깅) 난이도 easy Note 1. 문제 자체는 쉬웠다. 2. 하지만, 함수 구현 문제로 나올 수 있으니, 해당 로직은 알 필요가 있다. 3. grid[i][j] + grid[j][k] (가로로 접었은 것) 와 grid[i][j] + grid[k][i] (세로로 접은 것) 중 더 큰 것과 answer를 비교해서 answer에 업데이트. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def solution(grid): answer = 0 for i in range(4): for j in range(4): for k in range(j + 1, 4, 2): answer = max(answer, max(grid[i][..
Algorithm/COS
2022. 3. 1. 11:58