chore: use iwyu on math/**.cpp

This commit is contained in:
realstealthninja
2024-09-13 15:38:50 +05:30
parent c3897d3763
commit c47117ca3f
23 changed files with 102 additions and 88 deletions

View File

@@ -9,9 +9,9 @@
* multiplicative inverse of a number. (A * B)%M == 1 Here B is the MMI of A for
* given M, so extendedEuclid (A, M) gives B.
*/
#include <algorithm> // for swap function
#include <iostream>
#include <cstdint>
#include <iostream> // for char_traits, basic_ostream, basic_ostream::opera...
#include <cstdint> // for uint32_t, int32_t
#include <utility> // for swap
/**
* function to update the coefficients per iteration