Recent posts

Angular Learning - Day 2

2 minute read

Installing Angular CLI This CLI requires nodejs, so we need to install the nodejs first before running following command. npm install -g @angular/cli --no-st...

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.