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
- 우분투
- 파이썬
- Baekjoon
- PYTHON
- programmers
- 백준
- 편스토랑 우승상품
- Git
- ubuntu
- 캐치카페
- gs25
- 금융문자분석경진대회
- 데이콘
- github
- AI 경진대회
- dacon
- Kaggle
- SW Expert Academy
- Docker
- 코로나19
- 프로그래머스 파이썬
- leetcode
- Real or Not? NLP with Disaster Tweets
- 자연어처리
- 편스토랑
- hackerrank
- 더현대서울 맛집
- 맥북
- 프로그래머스
- ChatGPT
Archives
- Today
- Total
목록
반응형
백준 10480번 파이썬 (1)
반응형
솜씨좋은장씨
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/1TOtS/btr4thEXKVa/3z60Bx7Oad7aLv8c7qK7OK/img.png)
코딩 1일 1문제! 오늘의 문제는 백준의 Oddities 입니다. 10480번: Oddities Some numbers are just, well, odd. For example, the number 3 is odd, because it is not a multiple of two. Numbers that are a multiple of two are not odd, they are even. More precisely, if a number n can be expressed as n = 2 ∗ k for some integer k, then n www.acmicpc.net 👨🏻💻 코드 ( Solution ) def oddities(n): return f"{n} is even" if n % 2 == 0..
Programming/코딩 1일 1문제
2023. 3. 17. 23:52
반응형