diff --git a/leetcode/src/441.c b/leetcode/src/441.c index 34077212..4c0df617 100644 --- a/leetcode/src/441.c +++ b/leetcode/src/441.c @@ -13,7 +13,7 @@ int arrangeCoins(int n) long long int guess = mid * (mid + 1L) / 2; long long int prevGuess = (mid - 1L) * mid / 2; if (guess == n) - { // Edge case - f it's equal then the last row is full and we have + { // Edge case - if it's equal then the last row is full and we have // reached our answer return mid; }