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
- cos
- 코딩테스트
- DART
- 알고리즘
- 안드로이드스튜디오
- Python
- android
- 안드로이드
- codingtest
- 분할정복
- 동적계획법
- 백준
- 코드품앗이
- AndroidStudio
- issue
- DFS와BFS
- 동적계획법과최단거리역추적
- vuejs
- DFS
- 코테
- BAEKJOON
- 파이썬
- cos pro
- Vue
- C++
- django
- 개발
- cos pro 1급
- Flutter
- Algorithm
Archives
- Today
- Total
목록cos 1급 6차 단어를 순서대로 적으세요 python (1)
Development Artist
[COS Pro 1급, Python] 6차 2번 : 단어를 순서대로 적으세요
문제 유형 코딩 난이도 normal Note 1. 임계값 K를 업데이트 하면서 필요한 라인 계산. 2. 띄워쓰기 때문에 is_first로 첫 라인의 첫 단어는 띄워쓰기를 빼는 것으로 계산. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def solution(K, words): answer = 1 rest_len = K is_first = True for word in words: if is_first: length = len(word) else: length = len(word) + 1 if 0
Algorithm/COS
2022. 2. 28. 17:39