All Posts

Leetcode 53: Maximum Subarray

Given an integer array nums, find the contiguous subarray (containing at least one number) that has the largest sum and return its sum.

Leetcode 54: Spiral Matrix

Given an m x n matrix, return all the elements of the matrix in spiral order.

Leetcode 55: Jump Game

You are given an integer array nums. Starting from the first index, each element represents the maximum jump length you can make from that position. Return true if you can reach the last index, or false otherwise.

Leetcode 56: Merge Intervals

You are given an array of intervals where each interval is represented by a pair [start, end]. Merge all overlapping intervals and return a list of non-overlapping intervals that cover all the input intervals.

Leetcode 57: Insert Interval

You are given an array of non-overlapping intervals where intervals[i] = [starti, endi] represent the start and the end of the ith interval, and intervals are sorted in ascending order by starti. You are also given an interval newInterval = [start, end] that represents the start and end of another interval. Insert newInterval into intervals such that intervals is still sorted and there are no overlapping intervals. Merge overlapping intervals if necessary and return the updated list of intervals.

Leetcode 59: Spiral Matrix II

Create an n x n matrix where numbers from 1 to n^2 are arranged in a spiral order starting from the top-left corner.