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
- ChatGPT
- Baekjoon
- Real or Not? NLP with Disaster Tweets
- 자연어처리
- ubuntu
- 파이썬
- Git
- AI 경진대회
- 프로그래머스
- Kaggle
- 더현대서울 맛집
- hackerrank
- 맥북
- 편스토랑
- 백준
- 편스토랑 우승상품
- 우분투
- 금융문자분석경진대회
- github
- SW Expert Academy
- programmers
- 데이콘
- 프로그래머스 파이썬
- Docker
- PYTHON
- dacon
- gs25
- 코로나19
- 캐치카페
- leetcode
Archives
- Today
- Total
목록
반응형
Can you add this python (1)
반응형
솜씨좋은장씨
[BaekJoon] 7891번 : Can you add this? (Python)
def can_you_add_this(num1, num2): return num1 + num2 if __name__ == "__main__": for _ in range(int(input())): num1, num2 = map(int, input().split()) print(can_you_add_this(num1, num2)) 코딩 1일 1문제! 오늘의 문제는 백준의 Can you add this? 입니다. 7891번: Can you add this? The input contains several test cases. The first line contains and integer t (t ≤ 100) denoting the number of test cases. Then t tests follow,..
Programming/코딩 1일 1문제
2022. 8. 9. 06:47
반응형