Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 144 Bytes

Bitwise.md

File metadata and controls

7 lines (5 loc) · 144 Bytes
  1. Turn off the rightmost set bit

    Input: 12 (00...01100) Output: 8 (00...01000)

    Input: 7 (00...00111) Output: 6 (00...00110)