回答編集履歴
1
微修正
test
CHANGED
@@ -6,13 +6,13 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
-
|
9
|
+
修正方法としては、以下のように`match`から実体である`String`を返すようにすればよいです.
|
10
10
|
|
11
11
|
|
12
12
|
|
13
13
|
```rust
|
14
14
|
|
15
|
-
text += &match self.field[x][y].placed_number{
|
15
|
+
text += &match self.field[x][y].placed_number {
|
16
16
|
|
17
17
|
Some(v) => v.to_string(),
|
18
18
|
|