Coeficiente binomial eficiente en espacio y tiempo
Escriba una función que tome dos parámetros n y k y devuelva el valor del coeficiente binomial C(n, k). Ejemplo: Input: n = 4 and k = 2 Output: 6 Explanation: 4 C 2 is 4!/(2!*2!) = 6 Input: n = 5 and k = 2 Output: 10 Explanation: 5 C 2 is 5!/(3!*2!) = 20 … Continue reading «Coeficiente binomial eficiente en espacio y tiempo»