Central binomial coefficient
Given an integer N, the task is to find the N^{th} Central binomial coefficient. The first few Central binomial coefficients for N = 0, 1, 2, 3... are 1, 2, 6, 20, 70, 252, 924, 3432..... Examples: Input: N = 3 Output: 20 Explanation: N^{th} Central Binomial Coefficient = \binom{2N}{N} = \binom{2*3}