From 180453b26b35c2084c4ab9cde50e17285c7fab9d Mon Sep 17 00:00:00 2001 From: EFanZh Date: Wed, 14 Feb 2024 22:53:48 +0800 Subject: [PATCH] Fix test cases --- src/problem_1735_count_ways_to_make_array_with_product/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/problem_1735_count_ways_to_make_array_with_product/mod.rs b/src/problem_1735_count_ways_to_make_array_with_product/mod.rs index 5bb33871..7031c5d4 100644 --- a/src/problem_1735_count_ways_to_make_array_with_product/mod.rs +++ b/src/problem_1735_count_ways_to_make_array_with_product/mod.rs @@ -22,7 +22,7 @@ mod tests { ), ]; - for &(queries, expected) in &test_cases[3..] { + for (queries, expected) in test_cases { assert_eq!(S::ways_to_fill_array(queries.iter().map(Vec::from).collect()), expected); } }