回答編集履歴
2
ミスがあったため修正。
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
console.log( ax( arya, aryc ) );
|
20
20
|
|
21
|
-
```**動くサンプル:**[https://jsfiddle.net/m10pcz8o/](https://jsfiddle.net/m10pcz8o/)
|
21
|
+
```**動くサンプル:**[https://jsfiddle.net/m10pcz8o/1/](https://jsfiddle.net/m10pcz8o/1/)
|
22
22
|
|
23
23
|
|
24
24
|
|
1
ミスがあったため修正。
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
function ax( key_arr, target_arr ){
|
12
12
|
|
13
|
-
return ar
|
13
|
+
return key_arr.every( curr => target_arr.some( val => val === "" + curr ) );
|
14
14
|
|
15
15
|
}
|
16
16
|
|