aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Igne <git@federicoigne.com>2022-07-13 13:18:30 +0100
committerFederico Igne <git@federicoigne.com>2022-07-13 13:18:30 +0100
commit6875c88c3d5a4b699d588bdf95befaec0c9a18e1 (patch)
treee544eb76d4f07f5e5bb5aab115074cdd688d57da
parentbed0d35b2cccff986e2d4babc1b976b0fe01f62e (diff)
downloadexercism-master.tar.gz
exercism-master.zip
[rust] MinesweeperHEADmaster
-rw-r--r--rust/minesweeper/.gitignore8
-rw-r--r--rust/minesweeper/Cargo.toml4
-rw-r--r--rust/minesweeper/HELP.md85
-rw-r--r--rust/minesweeper/README.md80
-rw-r--r--rust/minesweeper/src/lib.rs25
-rw-r--r--rust/minesweeper/tests/minesweeper.rs141
6 files changed, 343 insertions, 0 deletions
diff --git a/rust/minesweeper/.gitignore b/rust/minesweeper/.gitignore
new file mode 100644
index 0000000..db7f315
--- /dev/null
+++ b/rust/minesweeper/.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/minesweeper/Cargo.toml b/rust/minesweeper/Cargo.toml
new file mode 100644
index 0000000..5b53e26
--- /dev/null
+++ b/rust/minesweeper/Cargo.toml
@@ -0,0 +1,4 @@
1[package]
2edition = "2021"
3name = "minesweeper"
4version = "1.1.0"
diff --git a/rust/minesweeper/HELP.md b/rust/minesweeper/HELP.md
new file mode 100644
index 0000000..40d8a33
--- /dev/null
+++ b/rust/minesweeper/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/minesweeper/README.md b/rust/minesweeper/README.md
new file mode 100644
index 0000000..efca354
--- /dev/null
+++ b/rust/minesweeper/README.md
@@ -0,0 +1,80 @@
1# Minesweeper
2
3Welcome to Minesweeper on Exercism's Rust Track.
4If you need help running the tests or submitting your code, check out `HELP.md`.
5
6## Instructions
7
8Add the mine counts to a completed Minesweeper board.
9
10Minesweeper is a popular game where the user has to find the mines using
11numeric hints that indicate how many mines are directly adjacent
12(horizontally, vertically, diagonally) to a square.
13
14In this exercise you have to create some code that counts the number of
15mines adjacent to a given empty square and replaces that square with the
16count.
17
18The board is a rectangle composed of blank space (' ') characters. A mine
19is represented by an asterisk ('\*') character.
20
21If a given space has no adjacent mines at all, leave that square blank.
22
23## Examples
24
25For example you may receive a 5 x 4 board like this (empty spaces are
26represented here with the '·' character for display on screen):
27
28```
29·*·*·
30··*··
31··*··
32·····
33```
34
35And your code will transform it into this:
36
37```
381*3*1
3913*31
40·2*2·
41·111·
42```
43
44## Performance Hint
45
46All the inputs and outputs are in ASCII. Rust `String`s and `&str` are utf8,
47so while one might expect "Hello".chars() to be simple, it actually has to
48check each char to see if it's 1, 2, 3 or 4 `u8`s long. If we know a `&str`
49is ASCII then we can call `.as_bytes()` and refer to the underlying data via a `&[u8]` slice.
50Iterating over a u8 slice of ASCII is much quicker as there are no codepoints
51involved - every ASCII char is one u8 long.
52
53Can you complete the challenge without cloning the input?
54
55## Source
56
57### Created by
58
59- @EduardoBautista
60
61### Contributed to by
62
63- @ashleygwilliams
64- @coriolinus
65- @cwhakes
66- @EduardoBautista
67- @efx
68- @ErikSchierboom
69- @ffflorian
70- @IanWhitney
71- @kytrinyx
72- @lutostag
73- @mkantor
74- @nfiles
75- @petertseng
76- @rofrol
77- @stringparser
78- @workingjubilee
79- @xakon
80- @ZapAnton \ No newline at end of file
diff --git a/rust/minesweeper/src/lib.rs b/rust/minesweeper/src/lib.rs
new file mode 100644
index 0000000..febfdb3
--- /dev/null
+++ b/rust/minesweeper/src/lib.rs
@@ -0,0 +1,25 @@
1static OFFSETS: &'static[(i32,i32)] = &[
2 (-1,-1), (-1, 0), (-1, 1),
3 ( 0,-1), ( 0, 1),
4 ( 1,-1), ( 1, 0), ( 1, 1)
5];
6
7pub fn annotate(minefield: &[&str]) -> Vec<String> {
8 let height = minefield.len() as i32;
9 (0..height).map(|i| {
10 let width = minefield[i as usize].len() as i32;
11 (0..width).map(|j| {
12 if minefield[i as usize].as_bytes()[j as usize] == b' ' {
13 let count = OFFSETS
14 .iter()
15 .map(|(oi,oj)| (i+oi,j+oj))
16 .filter(|&(i,j)| i >= 0 && i < height && j >= 0 && j < width)
17 .filter(|&(i,j)| minefield[i as usize].as_bytes()[j as usize] == b'*')
18 .count();
19 if count > 0 { char::from_digit(count as u32,10).unwrap() } else { ' ' }
20 } else {
21 '*'
22 }
23 }).collect()
24 }).collect()
25}
diff --git a/rust/minesweeper/tests/minesweeper.rs b/rust/minesweeper/tests/minesweeper.rs
new file mode 100644
index 0000000..c27bbd5
--- /dev/null
+++ b/rust/minesweeper/tests/minesweeper.rs
@@ -0,0 +1,141 @@
1use minesweeper::annotate;
2
3fn remove_annotations(board: &[&str]) -> Vec<String> {
4 board.iter().map(|r| remove_annotations_in_row(r)).collect()
5}
6
7fn remove_annotations_in_row(row: &str) -> String {
8 row.chars()
9 .map(|ch| match ch {
10 '*' => '*',
11 _ => ' ',
12 })
13 .collect()
14}
15
16fn run_test(test_case: &[&str]) {
17 let cleaned = remove_annotations(test_case);
18 let cleaned_strs = cleaned.iter().map(|r| &r[..]).collect::<Vec<_>>();
19 let expected = test_case.iter().map(|&r| r.to_string()).collect::<Vec<_>>();
20 assert_eq!(expected, annotate(&cleaned_strs));
21}
22
23#[test]
24fn no_rows() {
25 #[rustfmt::skip]
26 run_test(&[
27 ]);
28}
29
30#[test]
31fn no_columns() {
32 #[rustfmt::skip]
33 run_test(&[
34 "",
35 ]);
36}
37
38#[test]
39fn no_mines() {
40 #[rustfmt::skip]
41 run_test(&[
42 " ",
43 " ",
44 " ",
45 ]);
46}
47
48#[test]
49fn board_with_only_mines() {
50 #[rustfmt::skip]
51 run_test(&[
52 "***",
53 "***",
54 "***",
55 ]);
56}
57
58#[test]
59fn mine_surrounded_by_spaces() {
60 #[rustfmt::skip]
61 run_test(&[
62 "111",
63 "1*1",
64 "111",
65 ]);
66}
67
68#[test]
69fn space_surrounded_by_mines() {
70 #[rustfmt::skip]
71 run_test(&[
72 "***",
73 "*8*",
74 "***",
75 ]);
76}
77
78#[test]
79fn horizontal_line() {
80 #[rustfmt::skip]
81 run_test(&[
82 "1*2*1",
83 ]);
84}
85
86#[test]
87fn horizontal_line_mines_at_edges() {
88 #[rustfmt::skip]
89 run_test(&[
90 "*1 1*",
91 ]);
92}
93
94#[test]
95fn vertical_line() {
96 #[rustfmt::skip]
97 run_test(&[
98 "1",
99 "*",
100 "2",
101 "*",
102 "1",
103 ]);
104}
105
106#[test]
107fn vertical_line_mines_at_edges() {
108 #[rustfmt::skip]
109 run_test(&[
110 "*",
111 "1",
112 " ",
113 "1",
114 "*",
115 ]);
116}
117
118#[test]
119fn cross() {
120 #[rustfmt::skip]
121 run_test(&[
122 " 2*2 ",
123 "25*52",
124 "*****",
125 "25*52",
126 " 2*2 ",
127 ]);
128}
129
130#[test]
131fn large_board() {
132 #[rustfmt::skip]
133 run_test(&[
134 "1*22*1",
135 "12*322",
136 " 123*2",
137 "112*4*",
138 "1*22*2",
139 "111111",
140 ]);
141}