(strs, currentStr="")
| 52 | result = [] |
| 53 | |
| 54 | def reduce_abc(strs, currentStr=""): |
| 55 | if not strs: |
| 56 | return currentStr |
| 57 | else: |
| 58 | for i in maps[strs[0]]: |
| 59 | x = reduce_abc(strs[1:], currentStr=currentStr+i) |
| 60 | if x: |
| 61 | result.append(x) |
| 62 | reduce_abc(digits) |
| 63 | return result |
nothing calls this directly
no outgoing calls
no test coverage detected