Algo-Phantoms / Algo-Tree

Algo-Tree is a collection of Algorithms and data structures which are fundamentals to efficient code and good software design. Creating and designing excellent algorithms is required for being an exemplary programmer. It contains solutions in various languages such as C++, Python and Java.
MIT License
357 stars 624 forks source link

Add code for Catalan Numbers in DP #1971

Open amankhanathani opened 3 years ago

amankhanathani commented 3 years ago

Is your feature request related to a problem? Please describe. Series that usually comes up while looking up pascal's triangle. 0th is 1,further n+1 is summation of ith and n-ith catalan number 1,1,2,5,14,42..... Describe the solution you'd like 0th is 1,further n+1 is summation of ith and n-ith catalan number. We can solve this using recursion concepts.

Do you want to work on it Add comments and code in C++.

prakharshreyash commented 3 years ago

Can I work on this issue? @amankhanathani

agrlmuskan commented 3 years ago

Please assign this to me in C++.I am a GSSOC'21 participant. @amankhanathani