Question: local filename = grid.txt local grid = loadGrid ( filename ) - - function to load the grid from a file function loadgrid (

local filename = "grid.txt"
local grid = loadGrid(filename)
--function to load the grid from a file
function loadgrid(filename)
local file = io. open (filename ,"r")
local grid ={}
if file then
for line in file:lines do
local row ={}
for num in line:gmatch ("%d+") do
table.insert (row, tonumber(num))
end
table.insert (grid, row)
end
file:close()
else
print("Error : Unable to open the file.")
os.exit(1)
end
return grid
end
 local filename = "grid.txt" local grid = loadGrid(filename) --function to load

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!