This commit is contained in:
Kartik K. Agaram 2022-11-17 21:58:12 -08:00
parent 8651cc2733
commit 892f3f4b76
1 changed files with 0 additions and 1 deletions

View File

@ -63,7 +63,6 @@ end
function sum(arr, lo, hi)
local result = 0
print(#arr, lo, hi)
for i=lo,hi do
result = result + arr[i]
end