Files
hsa/cake/binary_search/binarySearch.py
CakeCN 0792ec8c71 ready
2024-12-11 20:17:52 +08:00

6 lines
99 B
Python

n = int(input())
array = list(map(int, input().split()))
q = int(input())
while q!=0:
q-=1