comptime sieve

This commit is contained in:
Rorik Star Platinum 2025-12-11 01:02:04 +03:00
parent 485252a76f
commit 9624356fec
14 changed files with 685 additions and 0 deletions

View file

@ -0,0 +1,3 @@
pub fn factors(n: u64) -> Vec<u64> {
todo!("This should calculate the prime factors of {n}")
}