summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authormokou <mokou@fastmail.com>2022-07-14 18:11:18 +0200
committermokou <mokou@fastmail.com>2022-07-14 18:11:18 +0200
commit5979d408a9d3f174bf748b82d1a031a25b548af6 (patch)
tree40d9b2cd1f07b668041269abe7a4bb50d6eef0bd /info.toml
parentd61f79595a8929c118e76f78c6ec26ca49219062 (diff)
feat: move generics3 to be quiz3
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml31
1 files changed, 10 insertions, 21 deletions
diff --git a/info.toml b/info.toml
index cb49a97..70f66e0 100644
--- a/info.toml
+++ b/info.toml
@@ -681,19 +681,6 @@ Maybe we could update the explicit references to this data type somehow?
If you are still stuck https://doc.rust-lang.org/stable/book/ch10-01-syntax.html#in-method-definitions
"""
-[[exercises]]
-name = "generics3"
-path = "exercises/generics/generics3.rs"
-mode = "test"
-hint = """
-To find the best solution to this challenge you're going to need to think back to your
-knowledge of traits, specifically Trait Bound Syntax - you may also need this: "use std::fmt::Display;"
-
-This is definitely harder than the last two exercises! You need to think about not only making the
-ReportCard struct generic, but also the correct property - you will need to change the implementation
-of the struct slightly too...you can do it!
-"""
-
# TRAITS
[[exercises]]
@@ -716,6 +703,16 @@ Try mutating the incoming string vector.
Vectors provide suitable methods for adding an element at the end. See
the documentation at: https://doc.rust-lang.org/std/vec/struct.Vec.html"""
+# QUIZ 3
+
+[[exercises]]
+name = "quiz3"
+path = "exercises/quiz3.rs"
+mode = "test"
+hint = """
+To find the best solution to this challenge you're going to need to think back to your
+knowledge of traits, specifically Trait Bound Syntax - you may also need this: "use std::fmt::Display;""""
+
# TESTS
[[exercises]]
@@ -748,14 +745,6 @@ You can call a function right where you're passing arguments to `assert!` -- so
something like `assert!(having_fun())`. If you want to check that you indeed get false, you
can negate the result of what you're doing using `!`, like `assert!(!having_fun())`."""
-# TEST 3
-
-[[exercises]]
-name = "quiz3"
-path = "exercises/quiz3.rs"
-mode = "test"
-hint = "No hints this time ;)"
-
# STANDARD LIBRARY TYPES
[[exercises]]