From 9f75554f2a30295996f03f0160b98c0458305502 Mon Sep 17 00:00:00 2001 From: Jawaad Mahmood Date: Sun, 10 May 2020 05:21:29 -0600 Subject: [PATCH] fix(options1): Add hint about Array Initialization (#389) --- info.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/info.toml b/info.toml index 89a669c..c47041b 100644 --- a/info.toml +++ b/info.toml @@ -561,13 +561,15 @@ name = "option1" path = "exercises/option/option1.rs" mode = "compile" hint = """ -Check out some functions of Option: +Hint 1: Check out some functions of Option: is_some is_none unwrap and: pattern matching + +Hint 2: There are no sensible defaults for the value of an Array; the values need to be filled before use. """ [[exercises]]