Fixed bug with ?

This commit is contained in:
2019-08-25 15:36:02 -04:00
parent b5d18e0c72
commit 27d00755d7

View File

@@ -333,3 +333,12 @@ function getPermutations(master, num)
--Return the list --Return the list
return perms; return perms;
end end
function isFound(ary, key)
for cnt = 1, #ary do
if(ary[ary] == key) then
return true;
end
end
return false;
end