Skip to content

Commit 2726165

Browse files
committed
docs: Add Documentation for Combinatorics and Permutations in C++
1 parent bccc793 commit 2726165

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: website/docs/math/combinatorics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ auto inverse = [&](int64_t num) -> int64_t {
3333
return fastpow(num, md - 2);
3434
};
3535
```
36-
Computes the modular inverse of a number $\( \text{num} \mod \text{md} \)$ using Fermat's Little Theorem. This method is efficient and operates in $\( O(\log \text{md}) \)$.
36+
Computes the modular inverse of a number $( \text{num} \mod \text{md} )$ using Fermat's Little Theorem. This method is efficient and operates in $( O(\log \text{md}) )$.
3737

3838
### 3. Precomputations
3939
#### Factorial Table Construction

0 commit comments

Comments
 (0)