Read More305 views1 minute read LeetCode1673. Find the Most Competitive SubsequenceByWayne15/08/2023 我們必須先了解題目中的 competitive subsequence 是什麼。當 a 比 b 更 competitive 時,這是指在相同的位置上,a 的字母比 b 的字母小。 Read More 0 0 0 0
Read More253 views1 minute read LeetCode503. Next Greater Element IIByWayne15/08/2023 此題要我們找 nums 中,每個數字的下一個較大的數字。我們可以用 decreasing monotonic stack 來解。 Read More 0 0 0 0
Read More400 views1 minute read AlgorithmMonotonic StackByWayne13/08/2023 Monotonic stack 是一種 stack,其中裡面的元素的值必須是遞增或是遞減。 Read More 0 0 0 0