aboutsummaryrefslogtreecommitdiff
path: root/challenge-331/hvukman/lua/331_p2.lua
blob: b27e23c72e92b3053c222a5928450a51d7e39250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
-- http://lua-users.org/wiki/CopyTable 
-- Deepcopy of table
function deepcopy(orig)
    local orig_type = type(orig)
    local copy
    if orig_type == 'table' then
        copy = {}
        for orig_key, orig_value in next, orig, nil do
            copy[deepcopy(orig_key)] = deepcopy(orig_value)
        end
        setmetatable(copy, deepcopy(getmetatable(orig)))
    else -- number, string, boolean, etc
        copy = orig
    end
    return copy
end


-- turn word to table and then swap it
function Swap(Table, Pos1, Pos2)
    -- deep copy of table and then return it
    local new_tab = deepcopy(Table)
    new_tab[Pos1], new_tab[Pos2] = new_tab[Pos2], new_tab[Pos1]
    return new_tab
end

local word = {}
local inp = "feed"
local buddy = "feed"

for i= 1,#inp do
    table.insert(word,string.sub(inp,i,i))
end

local isbuddy = false 
for j= 1,#word-1 do
    local newword = (table.concat(Swap(word,j,j+1)))
    -- print (newword)
    if newword == buddy then
        print ("buddy: ", newword)
        print("true")
        isbuddy = true
        break
    end
    
end

if (not isbuddy) then
        print("false")
end