Find Binomial Coefficient for 6C3 using dynamic programming approach and also explain in detail about complexity.
The algorithm is described by the table. The answer is 20.
The complexity is "O(n\\cdot\nk)" since the table "n\\times k" is constructed.
Comments
Leave a comment