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
- PYTHON
- 백준
- 자연어처리
- 캐치카페
- ubuntu
- Docker
- programmers
- Real or Not? NLP with Disaster Tweets
- leetcode
- 편스토랑
- 코로나19
- AI 경진대회
- dacon
- Kaggle
- 금융문자분석경진대회
- 더현대서울 맛집
- Git
- ChatGPT
- github
- hackerrank
- 우분투
- 데이콘
- 맥북
- Baekjoon
- 프로그래머스
- 파이썬
- 프로그래머스 파이썬
- SW Expert Academy
- 편스토랑 우승상품
- gs25
Archives
- Today
- Total
목록
반응형
백준 6810 (1)
반응형
솜씨좋은장씨
[BaekJoon] 6810번 : ISBN (Python)
코딩 1일 1문제! 오늘의 문제는 백준의 ISBN 입니다. 6810번: ISBN The International Standard Book Number (ISBN) is a 13-digit code for identifying books. These numbers have a special property for detecting whether the number was written correctly. The 1-3-sum of a 13-digit number is calculated by multiplying the digits a www.acmicpc.net 👨🏻💻 코드 ( Solution ) def isbn(a, b, c): answer = 91 + a * 1 + b * 3 + c * 1 retu..
Programming/코딩 1일 1문제
2022. 10. 27. 12:21
반응형