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