Closed icyflame closed 6 years ago
start_solve = start_inspect + 1
Throughout index.js, the two variables are incremented synchronously. There's no need to have two variables.
index.js
Refactor the code to have only start_inspect and infer other dependent variables from it.
start_inspect
Fixed in #52
start_solve = start_inspect + 1
Throughout
index.js
, the two variables are incremented synchronously. There's no need to have two variables.Refactor the code to have only
start_inspect
and infer other dependent variables from it.