[Python] BOJ 10815번. 숫자 카드 작성일 2020-06-11 | In Algorithm | 10815번. 숫자 카드 문제 링크 https://www.acmicpc.net/problem/10815 풀이 코드 1234567891011121314151617# 10815번. 숫자 카드 import sys input = sys.stdin.readline n = int(input()) cset = set(map(int, input().split())) m = int(input()) nList = list(map(int, input().split())) for i in range(m): if nList[i] in cset: print(1, end=' ') else: print(0, end=' ') 비고