mirror of
https://github.com/Hizenberg469/Algorithms-snippets.git
synced 2026-04-19 22:52:23 +03:00
Binomial Coefficient
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
template<typename T>
|
||||
T modMul(T a,T b,T M=(int)1e9+7){
|
||||
return ((a%M)*(b%M))%M;
|
||||
template<typename T>
|
||||
T modMul(T a,T b,T M=(int)1e9+7){
|
||||
return ((a%M)*(b%M))%M;
|
||||
}
|
||||
Reference in New Issue
Block a user