From 849d003a68037ec6ec2235029b660f389622dfa6 Mon Sep 17 00:00:00 2001 From: Loosetooth Date: Mon, 3 Feb 2025 00:36:42 +0100 Subject: [PATCH] cleanup --- 5kyu/smallest-possible-sum/solution.ts | 5 ----- 1 file changed, 5 deletions(-) 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;