Keypad Textonym Challenge
findTextonym(keys: string[]) { if (this.inputCount == 0) { this.inputDrafts = [...keys]; } else { let extend = []; for (let d = 0; d < this.inputDrafts.length; d++) { for (let key of keys) { const appended = `${this.inputDrafts[d]}${key}`; extend.push(appended); }…