(m: Map<string, number>, n = 15)
| 131 | } |
| 132 | |
| 133 | const top = (m: Map<string, number>, n = 15) => |
| 134 | [...m.entries()].sort((a, b) => b[1] - a[1]).slice(0, n); |
| 135 | |
| 136 | console.log(`SOLVED ${solved}/${slice.length}`); |
| 137 | console.log(`NO RULE ATTEMPT (dispatch/reduction gap): ${noAttempt}`); |