Skip to content
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions bit_manipulation/largest_power_of_2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
def largest_power_of_2(number: int) -> int:
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As there is no test file in this pull request nor any test function or class in the file bit_manipulation/largest_power_of_2.py, please provide doctest for the function largest_power_of_2

"""
returns the largest power of 2 that is less than or equal to the given number
The way this works is that we shift the binary form of the number to the right until we reach the last set bit
Using the number of times we had to shift to find the last set bit, we find the 2**(no of times shifted) which will be the ans
"""

last_set_bit = 0
while number:
last_set_bit+=1
number>>=1
return 2**(last_set_bit-1)


if __name__ == "__main__":
import doctest

doctest.testmod()