Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
32
Task/Factorial/LiveCode/factorial.livecode
Normal file
32
Task/Factorial/LiveCode/factorial.livecode
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
// recursive
|
||||
function factorialr n
|
||||
if n < 2 then
|
||||
return 1
|
||||
else
|
||||
return n * factorialr(n-1)
|
||||
end if
|
||||
end factorialr
|
||||
|
||||
// using accumulator
|
||||
function factorialacc n acc
|
||||
if n = 0 then
|
||||
return acc
|
||||
else
|
||||
return factorialacc(n-1, n * acc)
|
||||
end if
|
||||
end factorialacc
|
||||
|
||||
function factorial n
|
||||
return factorialacc(n,1)
|
||||
end factorial
|
||||
|
||||
// iterative
|
||||
function factorialit n
|
||||
put 1 into f
|
||||
if n > 1 then
|
||||
repeat with i = 1 to n
|
||||
multiply f by i
|
||||
end repeat
|
||||
end if
|
||||
return f
|
||||
end factorialit
|
||||
Loading…
Add table
Add a link
Reference in a new issue