Skip to content

Instantly share code, notes, and snippets.

View ZakiMohammed's full-sized avatar
🎨
Painting

Zaki Mohammed ZakiMohammed

🎨
Painting
View GitHub Profile
@ZakiMohammed
ZakiMohammed / BloomFilter.cs
Created August 15, 2016 15:12 — forked from richardkundl/BloomFilter.cs
Bloom filter implementation in c#.
namespace BloomFilter
{
using System;
using System.Collections;
/// <summary>
/// Bloom filter.
/// </summary>
/// <typeparam name="T">Item type </typeparam>
public class Filter<T>