Files
hsa/cake/binary_search/binarySearch.py
2024-12-08 22:46:08 +08:00

6 lines
100 B
Python

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