Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 19, 2022 03:34 pm GMT

Check if the Kth bit it set!

Example 1:
n= 5
k = 1
binary representation of 5 : 101
1st bit from right is set
therefore output = YES

Example 2:
n = 8
k = 2
binary representation of 8 : 1000
2nd bit from right is not set
therefore output = NO

Solution using Left Shift operator:
Image description

Solution using Right Shift Operator:
Image description


Original Link: https://dev.to/hebashakeel/check-if-the-kth-bit-it-set-2il3

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To