troptrop

function

Jun 3rd, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. function countSetBits(n)
  2. local count = 0
  3. while (n > 0) do
  4. count = count + (n & 1)
  5. n = n >> 1
  6. end
  7.  
  8. return count
  9. end
  10.  
Advertisement
Add Comment
Please, Sign In to add comment