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