-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4.py
30 lines (28 loc) · 797 Bytes
/
4.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
safe = 0
def is_safe(nums):
safe = True
toggle = nums[0] > nums[1]
for i in range(len(nums) - 1):
if abs(nums[i]-nums[i+1]) <= 3 and abs(nums[i]-nums[i+1]) >= 1:
if nums[i] > nums[i+1] and not toggle:
safe = False
if nums[i] < nums[i+1] and toggle:
safe = False
else:
safe = False
return safe
f = open("3.in")
for line in f.readlines():
nums = list(map(int, line.split()))
proven_safe = False
if is_safe(nums):
proven_safe = True
safe += 1
else:
for possibility in range(len(nums)):
nums_clone = nums.copy()
del nums_clone[possibility]
if is_safe(nums_clone):
safe += 1
break
print(safe)