1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
//! # Table of contents //! //! - 📁 crates //! - 📁 graph //! - <img src="https://github.githubassets.com/images/icons/emoji/unicode/26a0.png" alt="⚠" title="⚠" width="20" height="20"> [dijkstra](../dijkstra/index.html) //! - 📁 integer //! - <img src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" alt="✔" title="✔" width="20" height="20"> [gcd](../gcd/index.html) //! - <img src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" alt="✔" title="✔" width="20" height="20"> [montmort_number](../montmort_number/index.html) //! - <img src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" alt="✔" title="✔" width="20" height="20"> [partition_point](../partition_point/index.html) //! - <img src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" alt="✔" title="✔" width="20" height="20"> [xorshift](../xorshift/index.html) //! - 📁 io //! - <img src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" alt="✔" title="✔" width="20" height="20"> [fastout](../fastout/index.html) //! - <img src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" alt="✔" title="✔" width="20" height="20"> [input](../input/index.html) //! - 📁 modulo //! - <img src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" alt="✔" title="✔" width="20" height="20"> [tonelli_shanks](../tonelli_shanks/index.html) //! - 📁 prime //! - <img src="https://github.githubassets.com/images/icons/emoji/unicode/26a0.png" alt="⚠" title="⚠" width="20" height="20"> [miller_rabin](../miller_rabin/index.html) //! - <img src="https://github.githubassets.com/images/icons/emoji/unicode/26a0.png" alt="⚠" title="⚠" width="20" height="20"> [rho](../rho/index.html) //! - <img src="https://github.githubassets.com/images/icons/emoji/unicode/26a0.png" alt="⚠" title="⚠" width="20" height="20"> [sieve](../sieve/index.html) //! # As `[dependencies]` //! //! ```toml //! qryxip-competitive-dijkstra = { git = "https://github.com/qryxip/competitive-programming-library" } //! qryxip-competitive-fastout = { git = "https://github.com/qryxip/competitive-programming-library" } //! qryxip-competitive-gcd = { git = "https://github.com/qryxip/competitive-programming-library" } //! qryxip-competitive-input = { git = "https://github.com/qryxip/competitive-programming-library" } //! qryxip-competitive-miller-rabin = { git = "https://github.com/qryxip/competitive-programming-library" } //! qryxip-competitive-montmort-number = { git = "https://github.com/qryxip/competitive-programming-library" } //! qryxip-competitive-partition-point = { git = "https://github.com/qryxip/competitive-programming-library" } //! qryxip-competitive-rho = { git = "https://github.com/qryxip/competitive-programming-library" } //! qryxip-competitive-sieve = { git = "https://github.com/qryxip/competitive-programming-library" } //! qryxip-competitive-tonelli-shanks = { git = "https://github.com/qryxip/competitive-programming-library" } //! qryxip-competitive-xorshift = { git = "https://github.com/qryxip/competitive-programming-library" } //! ```