Recent Posts

Balancing Brackets

Problem Definition You’re given a non-empty string made in its entirety from opening and closing braces. Your task is to find the minimum number of “operatio...

Bitwise Sieve w/ Code

Sieve of Eratosthenes is explained HERE Bitwise sieve is an optimized implementation of Sieve of Eratosthenes. It does the same thing but more memory effic...