summaryrefslogtreecommitdiff
path: root/exercises/smart_pointers
diff options
context:
space:
mode:
authorseporterfield <107010978+seporterfield@users.noreply.github.com>2023-01-01 01:51:27 +0100
committerGitHub <noreply@github.com>2023-01-01 01:51:27 +0100
commitc3bab88fda6311b34bc3f8091c2e3cf442148d6f (patch)
tree114a4b9253d9fbb1da73b674ce47cc70e0e19f2d /exercises/smart_pointers
parentcf1ae884a1e6ba38475751b9c8b3b64f4e345201 (diff)
moved box to smart_pointers
Diffstat (limited to 'exercises/smart_pointers')
-rw-r--r--exercises/smart_pointers/box1.rs56
1 files changed, 56 insertions, 0 deletions
diff --git a/exercises/smart_pointers/box1.rs b/exercises/smart_pointers/box1.rs
new file mode 100644
index 0000000..66cf00f
--- /dev/null
+++ b/exercises/smart_pointers/box1.rs
@@ -0,0 +1,56 @@
+// box1.rs
+//
+// At compile time, Rust needs to know how much space a type takes up. This becomes problematic
+// for recursive types, where a value can have as part of itself another value of the same type.
+// To get around the issue, we can use a `Box` - a smart pointer used to store data on the heap,
+// which also allows us to wrap a recursive type.
+//
+// The recursive type we're implementing in this exercise is the `cons list` - a data structure
+// frequently found in functional programming languages. Each item in a cons list contains two
+// elements: the value of the current item and the next item. The last item is a value called `Nil`.
+//
+// Step 1: use a `Box` in the enum definition to make the code compile
+// Step 2: create both empty and non-empty cons lists by replacing `todo!()`
+//
+// Note: the tests should not be changed
+//
+// Execute `rustlings hint box1` or use the `hint` watch subcommand for a hint.
+
+// I AM NOT DONE
+
+#[derive(PartialEq, Debug)]
+pub enum List {
+ Cons(i32, List),
+ Nil,
+}
+
+fn main() {
+ println!("This is an empty cons list: {:?}", create_empty_list());
+ println!(
+ "This is a non-empty cons list: {:?}",
+ create_non_empty_list()
+ );
+}
+
+pub fn create_empty_list() -> List {
+ todo!()
+}
+
+pub fn create_non_empty_list() -> List {
+ todo!()
+}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ #[test]
+ fn test_create_empty_list() {
+ assert_eq!(List::Nil, create_empty_list())
+ }
+
+ #[test]
+ fn test_create_non_empty_list() {
+ assert_ne!(create_empty_list(), create_non_empty_list())
+ }
+}