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