MCPcopy Create free account
hub / github.com/algorithmzuo/algorithm-journey / setOne

Method setOne

src/class173/Code05_HLD1.java:69–71  ·  view source on GitHub ↗
(int v)

Source from the content-addressed store, hash-verified

67 }
68
69 public void setOne(int v) {
70 set[v / 32] |= 1 << (v % 32);
71 }
72
73 public void or(BitSet obj) {
74 for (int i = 0; i < len; i++) {

Callers 2

queryMethod · 0.45
prepareMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected