(a: number, b: number)
| 509 | let genNum: Array<number> = []; |
| 510 | |
| 511 | function randi(a: number, b: number) { |
| 512 | return Math.floor(Math.random() * (b - a) + a); |
| 513 | } |
| 514 | |
| 515 | function recursive(val: number, arr: Array<number>): any { |
| 516 | if (!arr.includes(val)) { |
nothing calls this directly
no outgoing calls
no test coverage detected