/simple-bloom-filter

A simple BloomFilter written in Java

Primary LanguageJava

Simple BloomFilter

Prerequisites

  • Java 21+

Getting Started

demo

shell:>help

AVAILABLE COMMANDS
Cli Command
       add: 
       check: 

shell:>add hello_world
Added hello_world

shell:>check hello_world
Might contain 'hello_world'

shell:>check helloworld
Definitely not contain 'helloworld'