Recent posts

Problem of The Day: Two Sum

1 minute read

Problem Statement ``` Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.

Problem of The Day: Top K Frequent Elements

1 minute read

Problem Statement ``` Given an integer array nums and an integer k, return the k most frequent elements. You may return the answer in any order.