Recent posts

Problem of The Day: Jump Game II

2 minute read

Problem Statement ``` You are given a 0-indexed array of integers nums of length n. You are initially positioned at nums[0].

Problem of The Day: Number of Islands

2 minute read

Problem Statement ``` Given an m x n 2D binary grid grid which represents a map of ‘1’s (land) and ‘0’s (water), return the number of islands.

Problem of The Day: Course Schedule

3 minute read

Problem Statement ``` There are a total of numCourses courses you have to take, labeled from 0 to numCourses - 1. You are given an array prerequisites where ...