1. Two Sum


as we iterate through the array, we check if the complement (target - num) in map
Read more ⟶

1011. Capacity To Ship Packages Within D Days


the low is max weight, the high is sum of weights, use bs
Read more ⟶

136. Single Number


perform the XOR operation with unique, this will "cancel out" the duplicates
Read more ⟶

875. Koko Eating Bananas


if current speed is ok, the result will be on it's left inclusively
Read more ⟶