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 loadGridfilename
function to load the grid from a file
function loadgridfilename
local file io open filename
local grid
if file then
for line in file:lines do
local row
for num in line:gmatch d do
table.insert row tonumbernum
end
table.insert grid row
end
file:close
else
printError : Unable to open the file."
osexit
end
return grid
end
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
