Ad

This is already a kata. The code takes too long to run and I just wanted to post it anyway

local function prime(n)
  for i = 2, n^(1/2) do
    if (n % i) == 0 then
      return false
    end
  end
  return true
end

local function is_even(n)
  
  n = math.abs(n)
  
  local arr = {}
  for i = 2, n/2 do 
    if prime(i) == true and n%i == 0 then
      table.insert(arr,i)
    end
  end
  
  if n == 0 or n == 2 then return true end
  
  for i,v in ipairs(arr) do 
    if v == 2 then
      return true
    end
  end
  return false
    
end

return is_even

for loop

function Exponentiation(x)
  local product = 1
  for i = 1, x do
    product = product*x
  end
  return product
end
Code
Diff
  • function bestCodeEver(a)
      return a == 19 and true or false
    end
    
    • def bestCodeEver():
    • bestNumber = 19
    • return bestNumber
    • function bestCodeEver(a)
    • return a == 19 and true or false
    • end

Return a+b where a,b are the inputs to the function

Code
Diff
  • function sum_of_numbers(a, b)
      if a == b then
        return a + a or b + b 
      else
        return math.sqrt(b^2) + math.sqrt(a^2)
      end
    end
      
    • function sum_of_numbers(a, b)
    • return b + a
    • end
    • if a == b then
    • return a + a or b + b
    • else
    • return math.sqrt(b^2) + math.sqrt(a^2)
    • end
    • end
Code
Diff
  • function sum_of_numbers(a, b)
        return b + a
    end
    • def sum_of_numbers(a, b):
    • return b + a
    • function sum_of_numbers(a, b)
    • return b + a
    • end