clang-format and clang-tidy fixes for 5b69ba5c

This commit is contained in:
github-actions
2020-11-15 20:09:34 +00:00
parent 5b69ba5c6c
commit 8b747e2f7a

View File

@@ -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 {
/**