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
8
Task/Catalan-numbers/Ring/catalan-numbers.ring
Normal file
8
Task/Catalan-numbers/Ring/catalan-numbers.ring
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
for n = 1 to 15
|
||||
see catalan(n) + nl
|
||||
next
|
||||
|
||||
func catalan n
|
||||
if n = 0 return 1 ok
|
||||
cat = 2 * (2 * n - 1) * catalan(n - 1) / (n + 1)
|
||||
return cat
|
||||
Loading…
Add table
Add a link
Reference in a new issue