summaryrefslogtreecommitdiff
path: root/exercises/quizzes/quiz2.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-07-05 13:39:50 +0200
committermo8it <mo8it@proton.me>2024-07-05 13:39:50 +0200
commit7123c7ae3a9605fbe962e4ef0a0f1424cd16fef8 (patch)
treec67f7e62bb9a179ae4fdbab492501cb6847e64c7 /exercises/quizzes/quiz2.rs
parent77b687d501771c24bd83294d97b8e6f9ffa92d6b (diff)
parent4d9c346a173bb722b929f3ea3c00f84954483e24 (diff)
Merge remote-tracking branch 'upstream/main' into fix-enum-variant-inconsistency
Diffstat (limited to 'exercises/quizzes/quiz2.rs')
-rw-r--r--exercises/quizzes/quiz2.rs63
1 files changed, 63 insertions, 0 deletions
diff --git a/exercises/quizzes/quiz2.rs b/exercises/quizzes/quiz2.rs
new file mode 100644
index 0000000..8ef1342
--- /dev/null
+++ b/exercises/quizzes/quiz2.rs
@@ -0,0 +1,63 @@
+// This is a quiz for the following sections:
+// - Strings
+// - Vecs
+// - Move semantics
+// - Modules
+// - Enums
+//
+// Let's build a little machine in the form of a function. As input, we're going
+// to give a list of strings and commands. These commands determine what action
+// is going to be applied to the string. It can either be:
+// - Uppercase the string
+// - Trim the string
+// - Append "bar" to the string a specified amount of times
+//
+// The exact form of this will be:
+// - The input is going to be a Vector of 2-length tuples,
+// the first element is the string, the second one is the command.
+// - The output element is going to be a vector of strings.
+
+enum Command {
+ Uppercase,
+ Trim,
+ Append(usize),
+}
+
+mod my_module {
+ use super::Command;
+
+ // TODO: Complete the function.
+ // pub fn transformer(input: ???) -> ??? { ??? }
+}
+
+fn main() {
+ // You can optionally experiment here.
+}
+
+#[cfg(test)]
+mod tests {
+ // TODO: What do we need to import to have `transformer` in scope?
+ // use ???;
+ use super::Command;
+
+ #[test]
+ fn it_works() {
+ let input = vec![
+ ("hello".to_string(), Command::Uppercase),
+ (" all roads lead to rome! ".to_string(), Command::Trim),
+ ("foo".to_string(), Command::Append(1)),
+ ("bar".to_string(), Command::Append(5)),
+ ];
+ let output = transformer(input);
+
+ assert_eq!(
+ output,
+ [
+ "HELLO",
+ "all roads lead to rome!",
+ "foobar",
+ "barbarbarbarbarbar",
+ ]
+ );
+ }
+}