1
0
This commit is contained in:
2026-02-04 11:15:03 +08:00
commit 8b20a5dd21
125 changed files with 4177 additions and 0 deletions

6
problems/p29/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "p29"
version = "0.1.0"
edition = "2024"
[dependencies]

12
problems/p29/src/main.rs Normal file
View File

@@ -0,0 +1,12 @@
use std::collections::HashSet;
fn main() {
let mut result: HashSet<u32> = HashSet::new();
for a in 2..=100u32 {
for b in 2..=100u32 {
result.insert(a.pow(b));
}
}
todo!();
println!("{}", result.len());
}