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