Skip to content

Commit b5b9df8

Browse files
committed
Fix trailing whitespace in divide_two_integers.py
1 parent d917069 commit b5b9df8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

bit_manipulation/divide_two_integers.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,8 @@ def divide(self, dividend: int, divisor: int) -> int:
4646
# Outer loop: subtract divisor multiples from dividend
4747
while d >= n:
4848
cnt = 0
49-
50-
# Inner loop: find largest power-of-two multiple of divisor
51-
# that fits in dividend
49+
"""Inner loop: find largest power-of-two multiple of divisor
50+
that fits in dividend """
5251
while d >= (n << (cnt + 1)):
5352
cnt += 1
5453

0 commit comments

Comments
 (0)