Skip to content

Commit 9f9006d

Browse files
authored
Update 1085.py
1 parent f3ce150 commit 9f9006d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: 1085.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
x, y, w, h = map(int, input().split())
22
num = [x, y, w-x, h-y]
3+
# num = [0] * 4
4+
# num[0], num[1], num[2], num[3] = x, y, w-x, h-y
35
min = num[0]
46
for i in range(1,4):
57
if num[i] < min:

0 commit comments

Comments
 (0)