MediumRelated Topics: Array / Sliding WindowLeetCode Source
解題想法
我們首先遍歷數組來計算1的...
矩陣(Matrix) 與基本的陣列結構息息相關,有點類似於二維陣列,它是一個利用mxn的陣列來介紹矩陣擁有m列和n行。而一般資料結構與演算法上常用到的矩陣有四種...
14. Longest Common Prefix
題目描述:
請編寫一個函數來查找字符串陣列中的最長公共前綴。如果不存在公共前綴,則返回空字符串 "...
題目: 1894. Find the Student that Will Replace the Chalk題意:給定一個整數陣列chalk,以及一個整數k現場...
堆疊演算法(Stack) 是一種有序串列(即一群相同資料型態的組合),具有「後進先出」(Last In First Out, LIFO)的特性,故其所有的動作、...
HardRelated Topics: Hash Table / String / Greedy / Sorting / CountingLeetCode S...