chore: reorder lib root

This commit is contained in:
Matej Janezic 2023-12-09 13:39:15 +01:00
parent 00000190b5
commit 000002005e
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
#![feature(pattern)] #![feature(pattern)]
use std::mem::swap;
pub mod parsers; pub mod parsers;
pub mod template; pub mod template;
use std::mem::swap;
pub fn lcm(first: usize, second: usize) -> usize { pub fn lcm(first: usize, second: usize) -> usize {
first * second / gcd(first, second) first * second / gcd(first, second)
} }