Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- leetcode
- 금융문자분석경진대회
- Git
- ubuntu
- 편스토랑 우승상품
- 더현대서울 맛집
- github
- ChatGPT
- 편스토랑
- SW Expert Academy
- Kaggle
- 맥북
- programmers
- PYTHON
- dacon
- 파이썬
- 데이콘
- AI 경진대회
- Docker
- hackerrank
- Real or Not? NLP with Disaster Tweets
- 캐치카페
- 프로그래머스 파이썬
- 우분투
- 자연어처리
- 백준
- Baekjoon
- 프로그래머스
- 코로나19
- gs25
Archives
- Today
- Total
목록
반응형
백준 Fill the Rowboats (1)
반응형
솜씨좋은장씨
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/EpLju/btrWcLHj40O/862DLmb3Kq3QYdgqoz764k/img.png)
코딩 1일 1문제! 오늘의 문제는 백준의 Fill the Rowboats! 입니다. 5300번: Fill the Rowboats! The output will be the number of each pirate separated by spaces, with the word ”Go!” after every 6th pirate, and after the last pirate. www.acmicpc.net 👨🏻💻 코드 ( Solution ) def fill_the_rowboats(number): answer_list = [] number_list = list(range(1, number + 1)) slice_num = len(number_list) // 6 if len(number_list) % 6 == 0..
Programming/코딩 1일 1문제
2023. 1. 15. 18:28
반응형