回答編集履歴
1
回答の追記
test
CHANGED
@@ -4,7 +4,19 @@
|
|
4
4
|
|
5
5
|
```
|
6
6
|
|
7
|
-
line.components(separatedBy: ",")
|
7
|
+
let questionSourceDataArray = line.components(separatedBy: ",")
|
8
|
+
|
9
|
+
.
|
10
|
+
|
11
|
+
.
|
12
|
+
|
13
|
+
question = questionSourceDataArray[0]
|
14
|
+
|
15
|
+
answer = questionSourceDataArray[1]
|
16
|
+
|
17
|
+
.
|
18
|
+
|
19
|
+
.
|
8
20
|
|
9
21
|
```
|
10
22
|
|