aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guests/graph_coloring/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/guests/graph_coloring/src/lib.rs b/guests/graph_coloring/src/lib.rs
index 6dc1cf3..a0cdd3a 100644
--- a/guests/graph_coloring/src/lib.rs
+++ b/guests/graph_coloring/src/lib.rs
@@ -9,7 +9,7 @@ use alloc::vec::Vec;
pub fn main(
graph: Vec<Vec<bool>>,
colors: u32,
- coloring: Vec<Vec<u32>>,
+ coloring: Vec<[u32; 2]>,
) -> bool {
// Does it use the correct amount of colors?
let mut max_color = coloring[0][1];