Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Java11
- Python
- 헤드퍼스트 디자인패턴
- 단계별로 풀어보기
- 코딩테스트
- 명품 자바 프로그래밍
- GROUP BY 절
- java
- 응용
- level1
- 이론
- JAVA 11
- 백준
- 공공데이터
- 기본
- Codeforces Round #802 (Div. 2)
- 기초100제
- SELECT 절
- baekjoon
- 파이썬
- SQLD / SQLP
- Codeup
- HAVING 절
- 자바
- Python 3
- 개념
- BOJ
- programmers
- 기초
- pypy3
Archives
- Today
- Total
목록12 (1)
Development Project
[ Baekjoon - 단계별로 풀어보기(06/06~06/08) ] - 12단계 : 집합과 맵
10815 : 숫자 카드 import sys n = int(sys.stdin.readline().strip()) getNum = set(map(int,sys.stdin.readline().split())) m = int(sys.stdin.readline().strip()) checkNum = list(map(int,sys.stdin.readline().split())) for i in checkNum: if i in getNum: print(1) else: print(0) # import sys N = int(sys.stdin.readline().rstrip('\n')) numbers = set(map(int, sys.stdin.readline().rstrip('\n').split())) M = int(..
CodingTest/Baekjoon
2022. 6. 6. 13:07