백준#1920 수 찾기
1. 문제
https://www.acmicpc.net/problem/1920
- Easy / 해시,배열,구현 / 20분 컷
2. 나의 풀이
n = int(input())
n_list = list(map(int, input().split()))
m = int(input())
m_list = list(map(int, input().split()))
n_set = set(n_list)
for i in range(m):
if m_list[i] in n_set:
print(1)
else:
print(0)
3. 남의 풀이
n = int(input())
array = set(map(int, input().split()))
m = int(input())
x = list(map(int, input().split()))
for i in x:
if i not in array:
print('0')
else:
print('1')
4. 느낀 점
Author And Source
이 문제에 관하여(백준#1920 수 찾기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@muchogusto/백준1920-수-찾기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)