這次想透過練習 blind 75 ,來整理過去學過的演算法與資料結構
主要會有幾個方向:
1. 圖解的方式來做練習。
2. 分析解題其中的時間與空間複雜度。
3. 預計會使用 golang 作為解題的語言。
4. 寫下卡關遇到的難題。
Merge Intervals Given an array of intervals where intervals[i] = [starti, endi],...
Insert Interval You are given an array of non-overlapping intervals intervals wh...
圖解 blind 75: Math & Geometry 題型 Math & Geometry 題型 這類題型主要可以透過一些數學特性或是幾何學...
Set Matrix Zeroes Given an m x n integer matrix matrix, if an element is 0, set...
Spiral Matrix Given an m x n matrix, return all elements of the matrix in spiral...
Rotate Image You are given an n x n 2D matrix representing an image, rotate the...
圖解 blind 75: Bit Manipulation 簡介 Bit Manipulation 簡介 在電腦之中,數值都是已二進位去做儲存 對於數值來說有些...
Missing Number Given an array nums containing n distinct numbers in the range [0...
Sum of Two Integers Given two integers a and b, return the sum of the two intege...
Reverse Bits Reverse bits of a given 32 bits unsigned integer. Note: Note that...