Revision history of "Modulo"

Jump to navigation Jump to search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 13:58, 23 July 2018Ultmaster talk contribs 1,450 bytes +1,450 Created page with "<syntaxhighlight lang='cpp'> template<int MOD> struct ModInt { static const int Mod = MOD; unsigned x; ModInt() : x(0) {} ModInt(signed sig) { int si..."