diff --git a/5kyu/smallest-possible-sum/solution.ts b/5kyu/smallest-possible-sum/solution.ts index d7f21f6..a839108 100644 --- a/5kyu/smallest-possible-sum/solution.ts +++ b/5kyu/smallest-possible-sum/solution.ts @@ -15,11 +15,6 @@ const subtractMultiples = (a: number, b: number): number => { } } -/** - * Does a single operation on the given array. - * Keeps the array sorted. - * @returns True if the array is all the same, false otherwise. - */ const operate = (arr: number[]): boolean => { let step = 1;