4 lines
No EOL
81 B
Python
4 lines
No EOL
81 B
Python
res = [ [1,2,3], [4,5,6], [7,8,9] ]
|
|
S = 0
|
|
for i in range(3):
|
|
S = S + res[i][2] |