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
- 프로그래머스
- hackerrank
- 캐치카페
- ChatGPT
- SW Expert Academy
- 파이썬
- Baekjoon
- 더현대서울 맛집
- programmers
- gs25
- AI 경진대회
- github
- 우분투
- 금융문자분석경진대회
- 백준
- Kaggle
- leetcode
- Git
- 편스토랑
- 코로나19
- Real or Not? NLP with Disaster Tweets
- PYTHON
- 데이콘
- 자연어처리
- Docker
- 편스토랑 우승상품
- dacon
- 맥북
- ubuntu
- 프로그래머스 파이썬
Archives
- Today
- Total
목록
반응형
BaekJoon 5344 (1)
반응형
솜씨좋은장씨
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bgAcwp/btrVDiXW2EV/XDOvqm3YRlBW8KpUNZ5EK0/img.png)
코딩 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..
Programming/코딩 1일 1문제
2023. 1. 7. 02:06
반응형