Skip to content

Instantly share code, notes, and snippets.

View alexnas's full-sized avatar
🏠
Working from home

Alexander Nasokin alexnas

🏠
Working from home
View GitHub Profile
array = [0,8,6,9,1,3,4,8]
print(array)
check_arr=[1,3,4]
point = 0
result = False
for el in array:
if el == check_arr[point] and point == 0:
point += 1