1
vote
How do you make REALLY large boolean arrays using Java?
What values do you have in the array?
For a such large number I guess it's going to be a sparse array so maybe it would be best to use a Map/List and just allocate space and store a value for a 1 v …
