Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/algorithmzuo/algorithm-journey
/ remove
Method
remove
src/class032/Code01_Bitset.java:29–31 ·
view source on GitHub ↗
(int num)
Source
from the content-addressed store, hash-verified
27
}
28
29
public
void
remove(
int
num) {
30
set[num / 32] &= ~(1 << (num % 32));
31
}
32
33
public
void
reverse(
int
num) {
34
set[num / 32] ^= 1 << (num % 32);
Callers
7
main
Method · 0.95
main
Method · 0.45
main
Method · 0.45
erase
Method · 0.45
minimumDeviation
Method · 0.45
f
Method · 0.45
ladderLength
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected