Skip to content

Commit 51c3632

Browse files
committed
fix: 3-5 #4
1 parent 64fa808 commit 51c3632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

3-week3/5/JustKode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sys.setrecursionlimit(10**9)
33

44
n = int(input())
5-
arr = list(map(int, input().split()))
5+
arr = list(map(int, sys.stdin.readline().split()))
66
tree = [0] * (4 * n)
77

88
def init(node, start, end):

0 commit comments

Comments
 (0)