(length)
| 50 | const charactersLength = characters.length |
| 51 | |
| 52 | function generateAsciiString (length) { |
| 53 | let result = '' |
| 54 | for (let i = 0; i < length; ++i) { |
| 55 | result += characters[Math.floor(Math.random() * charactersLength)] |
| 56 | } |
| 57 | return result |
| 58 | } |
| 59 | const tst = new TernarySearchTree() |
| 60 | |
| 61 | /** @type {string[]} */ |
no outgoing calls
no test coverage detected
searching dependent graphs…