aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Igne <git@federicoigne.com>2022-07-13 11:31:40 +0100
committerFederico Igne <git@federicoigne.com>2022-07-13 11:31:40 +0100
commit17bf45b273913a24a72caa964ee16a4fe84c6ec6 (patch)
tree32346bc91982a1f14eaee0f5ff80bd6043d9dcee
parent438d66b1783918c18d1df76c419e31cc98f5fb85 (diff)
downloadexercism-17bf45b273913a24a72caa964ee16a4fe84c6ec6.tar.gz
exercism-17bf45b273913a24a72caa964ee16a4fe84c6ec6.zip
[rust] Sublist
-rw-r--r--rust/sublist/.gitignore8
-rw-r--r--rust/sublist/Cargo.toml4
-rw-r--r--rust/sublist/HELP.md85
-rw-r--r--rust/sublist/README.md49
-rw-r--r--rust/sublist/src/lib.rs19
-rw-r--r--rust/sublist/tests/sublist.rs110
6 files changed, 275 insertions, 0 deletions
diff --git a/rust/sublist/.gitignore b/rust/sublist/.gitignore
new file mode 100644
index 0000000..db7f315
--- /dev/null
+++ b/rust/sublist/.gitignore
@@ -0,0 +1,8 @@
1# Generated by Cargo
2# will have compiled files and executables
3/target/
4**/*.rs.bk
5
6# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
7# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
8Cargo.lock
diff --git a/rust/sublist/Cargo.toml b/rust/sublist/Cargo.toml
new file mode 100644
index 0000000..6493981
--- /dev/null
+++ b/rust/sublist/Cargo.toml
@@ -0,0 +1,4 @@
1[package]
2edition = "2021"
3name = "sublist"
4version = "0.0.0"
diff --git a/rust/sublist/HELP.md b/rust/sublist/HELP.md
new file mode 100644
index 0000000..40d8a33
--- /dev/null
+++ b/rust/sublist/HELP.md
@@ -0,0 +1,85 @@
1# Help
2
3## Running the tests
4
5Execute the tests with:
6
7```bash
8$ cargo test
9```
10
11All but the first test have been ignored. After you get the first test to
12pass, open the tests source file which is located in the `tests` directory
13and remove the `#[ignore]` flag from the next test and get the tests to pass
14again. Each separate test is a function with `#[test]` flag above it.
15Continue, until you pass every test.
16
17If you wish to run _only ignored_ tests without editing the tests source file, use:
18
19```bash
20$ cargo test -- --ignored
21```
22
23If you are using Rust 1.51 or later, you can run _all_ tests with
24
25```bash
26$ cargo test -- --include-ignored
27```
28
29To run a specific test, for example `some_test`, you can use:
30
31```bash
32$ cargo test some_test
33```
34
35If the specific test is ignored, use:
36
37```bash
38$ cargo test some_test -- --ignored
39```
40
41To learn more about Rust tests refer to the online [test documentation][rust-tests].
42
43[rust-tests]: https://doc.rust-lang.org/book/ch11-02-running-tests.html
44
45## Submitting your solution
46
47You can submit your solution using the `exercism submit src/lib.rs Cargo.toml` command.
48This command will upload your solution to the Exercism website and print the solution page's URL.
49
50It's possible to submit an incomplete solution which allows you to:
51
52- See how others have completed the exercise
53- Request help from a mentor
54
55## Need to get help?
56
57If you'd like help solving the exercise, check the following pages:
58
59- The [Rust track's documentation](https://exercism.org/docs/tracks/rust)
60- [Exercism's support channel on gitter](https://gitter.im/exercism/support)
61- The [Frequently Asked Questions](https://exercism.org/docs/using/faqs)
62
63Should those resources not suffice, you could submit your (incomplete) solution to request mentoring.
64
65## Rust Installation
66
67Refer to the [exercism help page][help-page] for Rust installation and learning
68resources.
69
70## Submitting the solution
71
72Generally you should submit all files in which you implemented your solution (`src/lib.rs` in most cases). If you are using any external crates, please consider submitting the `Cargo.toml` file. This will make the review process faster and clearer.
73
74## Feedback, Issues, Pull Requests
75
76The GitHub [track repository][github] is the home for all of the Rust exercises. If you have feedback about an exercise, or want to help implement new exercises, head over there and create an issue. Members of the rust track team are happy to help!
77
78If you want to know more about Exercism, take a look at the [contribution guide].
79
80## Submitting Incomplete Solutions
81It's possible to submit an incomplete solution so you can see how others have completed the exercise.
82
83[help-page]: https://exercism.org/tracks/rust/learning
84[github]: https://github.com/exercism/rust
85[contribution guide]: https://exercism.org/docs/community/contributors \ No newline at end of file
diff --git a/rust/sublist/README.md b/rust/sublist/README.md
new file mode 100644
index 0000000..2c905a4
--- /dev/null
+++ b/rust/sublist/README.md
@@ -0,0 +1,49 @@
1# Sublist
2
3Welcome to Sublist on Exercism's Rust Track.
4If you need help running the tests or submitting your code, check out `HELP.md`.
5
6## Instructions
7
8Given two lists determine if the first list is contained within the second
9list, if the second list is contained within the first list, if both lists are
10contained within each other or if none of these are true.
11
12Specifically, a list A is a sublist of list B if by dropping 0 or more elements
13from the front of B and 0 or more elements from the back of B you get a list
14that's completely equal to A.
15
16Examples:
17
18 * A = [1, 2, 3], B = [1, 2, 3, 4, 5], A is a sublist of B
19 * A = [3, 4, 5], B = [1, 2, 3, 4, 5], A is a sublist of B
20 * A = [3, 4], B = [1, 2, 3, 4, 5], A is a sublist of B
21 * A = [1, 2, 3], B = [1, 2, 3], A is equal to B
22 * A = [1, 2, 3, 4, 5], B = [2, 3, 4], A is a superlist of B
23 * A = [1, 2, 4], B = [1, 2, 3, 4, 5], A is not a superlist of, sublist of or equal to B
24
25## Source
26
27### Created by
28
29- @EduardoBautista
30
31### Contributed to by
32
33- @ashleygwilliams
34- @coriolinus
35- @cwhakes
36- @eddyp
37- @EduardoBautista
38- @efx
39- @ErikSchierboom
40- @IanWhitney
41- @kytrinyx
42- @lutostag
43- @mkantor
44- @nfiles
45- @petertseng
46- @rofrol
47- @stringparser
48- @xakon
49- @ZapAnton \ No newline at end of file
diff --git a/rust/sublist/src/lib.rs b/rust/sublist/src/lib.rs
new file mode 100644
index 0000000..cc62362
--- /dev/null
+++ b/rust/sublist/src/lib.rs
@@ -0,0 +1,19 @@
1#[derive(Debug, PartialEq, Eq)]
2pub enum Comparison {
3 Equal,
4 Sublist,
5 Superlist,
6 Unequal,
7}
8
9pub fn sublist<T: PartialEq>(fst: &[T], snd: &[T]) -> Comparison {
10 match (fst.len(),snd.len()) {
11 (0,0) => Comparison::Equal,
12 (0,_) => Comparison::Sublist,
13 (_,0) => Comparison::Superlist,
14 (n,m) if n < m && snd.windows(n).any(|s| fst == s) => Comparison::Sublist,
15 (n,m) if n > m && fst.windows(m).any(|f| snd == f) => Comparison::Superlist,
16 _ if fst == snd => Comparison::Equal,
17 _ => Comparison::Unequal
18 }
19}
diff --git a/rust/sublist/tests/sublist.rs b/rust/sublist/tests/sublist.rs
new file mode 100644
index 0000000..38c8a4b
--- /dev/null
+++ b/rust/sublist/tests/sublist.rs
@@ -0,0 +1,110 @@
1use sublist::{sublist, Comparison};
2
3#[test]
4fn empty_equals_empty() {
5 let v: &[u32] = &[];
6
7 assert_eq!(Comparison::Equal, sublist(v, v));
8}
9
10#[test]
11fn test_empty_is_a_sublist_of_anything() {
12 assert_eq!(Comparison::Sublist, sublist(&[], &['a', 's', 'd', 'f']));
13}
14
15#[test]
16fn test_anything_is_a_superlist_of_empty() {
17 assert_eq!(Comparison::Superlist, sublist(&['a', 's', 'd', 'f'], &[]));
18}
19
20#[test]
21fn test_1_is_not_2() {
22 assert_eq!(Comparison::Unequal, sublist(&[1], &[2]));
23}
24
25#[test]
26fn test_compare_larger_equal_lists() {
27 use std::iter::repeat;
28
29 let v: Vec<char> = repeat('x').take(1000).collect();
30
31 assert_eq!(Comparison::Equal, sublist(&v, &v));
32}
33
34#[test]
35fn test_sublist_at_start() {
36 assert_eq!(Comparison::Sublist, sublist(&[1, 2, 3], &[1, 2, 3, 4, 5]));
37}
38
39#[test]
40fn sublist_in_middle() {
41 assert_eq!(Comparison::Sublist, sublist(&[4, 3, 2], &[5, 4, 3, 2, 1]));
42}
43
44#[test]
45fn sublist_at_end() {
46 assert_eq!(Comparison::Sublist, sublist(&[3, 4, 5], &[1, 2, 3, 4, 5]));
47}
48
49#[test]
50fn partially_matching_sublist_at_start() {
51 assert_eq!(Comparison::Sublist, sublist(&[1, 1, 2], &[1, 1, 1, 2]));
52}
53
54#[test]
55fn sublist_early_in_huge_list() {
56 let huge: Vec<u32> = (1..1_000_000).collect();
57
58 assert_eq!(Comparison::Sublist, sublist(&[3, 4, 5], &huge));
59}
60
61#[test]
62fn huge_sublist_not_in_huge_list() {
63 let v1: Vec<u64> = (10..1_000_001).collect();
64 let v2: Vec<u64> = (1..1_000_000).collect();
65
66 assert_eq!(Comparison::Unequal, sublist(&v1, &v2));
67}
68
69#[test]
70fn superlist_at_start() {
71 assert_eq!(Comparison::Superlist, sublist(&[1, 2, 3, 4, 5], &[1, 2, 3]));
72}
73
74#[test]
75fn superlist_in_middle() {
76 assert_eq!(Comparison::Superlist, sublist(&[5, 4, 3, 2, 1], &[4, 3, 2]));
77}
78
79#[test]
80fn superlist_at_end() {
81 assert_eq!(Comparison::Superlist, sublist(&[1, 2, 3, 4, 5], &[3, 4, 5]));
82}
83
84#[test]
85fn second_list_missing_element_from_first_list() {
86 assert_eq!(Comparison::Unequal, sublist(&[1, 2, 3], &[1, 3]));
87}
88
89#[test]
90fn superlist_early_in_huge_list() {
91 let huge: Vec<u32> = (1..1_000_000).collect();
92
93 assert_eq!(Comparison::Superlist, sublist(&huge, &[3, 4, 5]));
94}
95
96#[test]
97fn recurring_values_sublist() {
98 assert_eq!(
99 Comparison::Sublist,
100 sublist(&[1, 2, 1, 2, 3], &[1, 2, 3, 1, 2, 1, 2, 3, 2, 1])
101 );
102}
103
104#[test]
105fn recurring_values_unequal() {
106 assert_eq!(
107 Comparison::Unequal,
108 sublist(&[1, 2, 1, 2, 3], &[1, 2, 3, 1, 2, 3, 2, 3, 2, 1])
109 );
110}