Advent of Code solutions
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

im lowk stupid i swear that worked last night but ok

Rain cfd306f0 996cfc16

+1 -1
+1 -1
2025/2/src/main.rs
··· 24 24 let len = num_string.len(); 25 25 26 26 // we'll only check up to the half way mark since after that it cant possibly repeat 27 - for i in 0..=(len / 2 - 1) { 27 + for i in 0..(len / 2) { 28 28 let substring_len = i + 1; 29 29 if len % substring_len == 0 { 30 30 if num_string == num_string.get(0..=i).unwrap().repeat(len / substring_len) {