diff --git a/math/ncr_modulo_p.cpp b/math/ncr_modulo_p.cpp index b84659b37..03aecf67e 100644 --- a/math/ncr_modulo_p.cpp +++ b/math/ncr_modulo_p.cpp @@ -1,6 +1,7 @@ /** * @file - * @brief This program aims at calculating [nCr modulo p](https://cp-algorithms.com/combinatorics/binomial-coefficients.html). + * @brief This program aims at calculating [nCr modulo + * p](https://cp-algorithms.com/combinatorics/binomial-coefficients.html). * @details nCr is defined as n! / (r! * (n-r)!) where n! represents factorial * of n. In many cases, the value of nCr is too large to fit in a 64 bit * integer. Hence, in competitive programming, there are many problems or @@ -19,7 +20,9 @@ namespace math { /** * @namespace ncr_modulo_p - * @brief Functions for [nCr modulo p](https://cp-algorithms.com/combinatorics/binomial-coefficients.html) implementation. + * @brief Functions for [nCr modulo + * p](https://cp-algorithms.com/combinatorics/binomial-coefficients.html) + * implementation. */ namespace ncr_modulo_p { /**