restructure zeta/** to storage/zeta/**
This commit is contained in:
8
storage/zeta/py/completed/10810.py
Normal file
8
storage/zeta/py/completed/10810.py
Normal file
@@ -0,0 +1,8 @@
|
||||
N, M = map(int, input().split())
|
||||
L = [0 for _ in range(N)]
|
||||
for _ in range(M):
|
||||
i, j, k = map(int, input().split())
|
||||
for m in range(i - 1, j):
|
||||
L[m] = k
|
||||
|
||||
print(" ".join(map(str, L)))
|
||||
Reference in New Issue
Block a user