Skip to content

Instantly share code, notes, and snippets.

@gauravat16
Last active April 18, 2020 16:13
Show Gist options
  • Save gauravat16/035da7394de8f89dd62aa10e9585e843 to your computer and use it in GitHub Desktop.
Save gauravat16/035da7394de8f89dd62aa10e9585e843 to your computer and use it in GitHub Desktop.
Bloom-Filter
package bloomfilter;
public interface BloomFilter {
void addData(String data);
boolean isPresent(String data);
String getInfo();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment