#1435. python-排序查找-对数据进行查找,输入n并依次输入n个整数,再输入m,在n个整数中查找m是否存在

python-排序查找-对数据进行查找,输入n并依次输入n个整数,再输入m,在n个整数中查找m是否存在

Background

Description

python-排序查找-对数据进行查找,输入n并依次输入n个整数,再输入m,在n个整数中查找m是否存在

Format

Input

Output

Samples

5
10
70
5
3
20
5
[10, 70, 5, 3, 20]
存在
5
10
70
5
3
20
1
[10, 70, 5, 3, 20]
不存在

Limitation

1s, 1024KiB for each test case.