(data: Array<Array<string>>)
| 37 | }; |
| 38 | |
| 39 | const flatten = (data: Array<Array<string>>) => { |
| 40 | const array: Array<string> = []; |
| 41 | for (const items of data) { |
| 42 | array.push(...items); |
| 43 | } |
| 44 | return array; |
| 45 | }; |
| 46 | |
| 47 | const isSubsequenceOf = ( |
| 48 | subsequence: Array<string>, |
no outgoing calls
no test coverage detected