Skip to content

Improve comments, function & class documentation in IndexOfRightMostSetBit.java #5579

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 7, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix comment
  • Loading branch information
Hardvan committed Oct 5, 2024
commit 86d1f76ea1d15fb4d614eacdf3d4b72f1f3ac5fa
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static int indexOfRightMostSetBit(int n) {
// Handle negative numbers by finding the two's complement
if (n < 0) {
n = -n;
n = n & (~n + 1);// Isolate the rightmost set bit
n = n & (~n + 1); // Isolate the rightmost set bit
}

int index = 0;
Expand Down