diff --git a/solver.js b/solver.js index 29eba07..9953118 100644 --- a/solver.js +++ b/solver.js @@ -60,10 +60,6 @@ class Pyramid { } return freeIndices; } - - static triangularNumber(n) { - return (n * (n + 1)) / 2; - } } class MoveString {