diff --git a/largest_palindrome_product.rs b/largest_palindrome_product.rs index 4121c08..876b363 100644 --- a/largest_palindrome_product.rs +++ b/largest_palindrome_product.rs @@ -1,8 +1,8 @@ fn main() { let mut product: i64 = 0; - for i in 1..=999 { - for j in 1..=999 { + for i in 100..=999 { + for j in 100..=999 { let product_string: String = format!("{:?}", i * j); let reversed_string = product_string.chars().rev().collect::();