Skip to content

Commit

Permalink
Update SumORSubset.java
Browse files Browse the repository at this point in the history
  • Loading branch information
TyrionLanister authored Apr 2, 2018
1 parent 5b0e7f0 commit a35b41b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SumORSubset.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ static int bitWiseOR( int [] arr ){
int result = 0;
int n = arr.length;
Vector<Integer> bitFreq = new Vector<Integer>(BIT_SIZE);
for(int i = 0;i<INT_SIZE;i++){
for(int i = 0;i<BIT_SIZE;i++){
bitFreq.add(0);
}

Expand Down

0 comments on commit a35b41b

Please sign in to comment.