solutions.py
57 subscribers
206 photos
183 links
admin: @Xojarbu
Download Telegram
#bit_manipulations
Title: Check Power of Two
URL: binarysearch
Level: Easy
! if n is power of 2, in binary numbers it will have only one '1' (e.g 64=> 100000),
if not power of 2, it will have more than one '1's. (e.g 33=>10001)
#bit_manipulations
Title: Number of Bits
URL: binarysearch
Level: Easy
#bit_manipulations
Title: Hamming Distance
URL: binarysearch
Level: Easy