Technical Blog

Recent posts

Majority Element in Java

3 minute read

DSA Java

Majority Element is a good example of turning a small-looking problem into a precise invariant. The Java implementation below captures the core idea, so this...

Largest Number in Java

4 minute read

DSA Java

Largest Number is a good example of turning a small-looking problem into a precise invariant. The Java implementation below captures the core idea, so this p...

Integer to Roman in Java

5 minute read

DSA Java

Integer to Roman is a good example of turning a small-looking problem into a precise invariant. The Java implementation below captures the core idea, so this...

Find the Duplicate Number in Java

3 minute read

DSA Java

Find the Duplicate Number is a good example of turning a small-looking problem into a precise invariant. The Java implementation below captures the core idea...