پودمان:Legals: تفاوت میان نسخه‌ها

پرش به ناوبری پرش به جستجو
بدون خلاصۀ ویرایش
بدون خلاصۀ ویرایش
بدون خلاصۀ ویرایش
خط ۹: خط ۹:
     return s1 .. s2 .. s3 .. s4
     return s1 .. s2 .. s3 .. s4
end
end


local data = {
local data = {
خط ۴۵: خط ۴۲:
function p.main(frame)
function p.main(frame)
     local result = ""
     local result = ""
    local dataShuffled = FYShuffle(data)
     for i = 1, #data, 1 do
     for i = 1, 27, 1 do
         result = result .. data[i]
         result = result .. dataShuffled[i]
     end
     end
     return result
     return result
end
end
-- Source: https://stackoverflow.com/questions/35572435/how-do-you-do-the-fisher-yates-shuffle-in-lua
function FYShuffle(tInput)
    math.randomseed(os.time())
    local tReturn = {}
    for i = #tInput, 1, -1 do
        local j = math.random(i)
        tInput[i], tInput[j] = tInput[j], tInput[i]
        table.insert(tReturn, tInput[i])
    end
    return tReturn
end


return p
return p

منوی ناوبری