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 | 29 | 30 | 31 |
Tags
- Docker
- Kaggle
- leetcode
- 코로나19
- 편스토랑
- 데이콘
- ubuntu
- github
- Real or Not? NLP with Disaster Tweets
- Git
- AI 경진대회
- 더현대서울 맛집
- PYTHON
- gs25
- 자연어처리
- 프로그래머스
- 백준
- 우분투
- dacon
- 편스토랑 우승상품
- Baekjoon
- 파이썬
- 맥북
- 캐치카페
- ChatGPT
- 프로그래머스 파이썬
- programmers
- 금융문자분석경진대회
- hackerrank
- SW Expert Academy
Archives
- Today
- Total
목록
반응형
백준 Fill the Rowboats 5300번 python (1)
반응형
솜씨좋은장씨
[BaekJoon] 5300번 : Fill the Rowboats! (Python)
코딩 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
반응형