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

코딩 1일 1문제! 오늘의 문제는 백준의 Absolutely 입니다. 26500번: Absolutely The first line contains a single positive integer, n, indicating the number of data sets. Each data set is on a separate line and contains two values on the number line, separated by a single space. www.acmicpc.net 👨🏻💻 코드 ( Solution ) def absolutely(value1, value2): return round(abs(value1-value2), 1) if __name__ == "__main__": for _ in ..

코딩 1일 1문제! 오늘의 문제는 백준의 GCD입니다. 5344번: GCD The first line of input will be a positive integer, n, indicating the number of problem sets. Each problem set consist of two positive integers, separated by one or more spaces. There are no blank lines in the input. www.acmicpc.net 👨🏻💻 코드 ( Solution ) def GCD(a, b): mod = a%b while mod > 0: a = b b = mod mod = a%b return b if __name__ == "__main__": fo..