原文題目 A trie (pronounced as "try") or prefix tree is a tree data struct...
原文題目 Write an efficient algorithm that searches for a value target in an m x n i...
原文題目 Given an m x n integer matrix matrix, if an element is 0, set its entire ro...
原文題目 You are given an n x n 2D matrix representing an image, rotate the image by...
Description Given a string s containing just the characters '(', ')', '{', '}',...
Description Given the head of a linked list, remove the nth node from the end of...
距今約兩個月前(2024.8.21),有位Reddit的網友利用Claude3.5 Sonnet進行LeetCode刷題,並用9美元在24小時內完成633道題目...
Description Given head, the head of a linked list, determine if the linked list...
🟨最長回文字子序列(解法1) 題目 本題取自 Leetcode 516. Longest Palindromic Subsequence Given a str...
原文題目 Given an array of integers temperatures represents the daily temperatures,...
原文題目 Given an encoded string, return its decoded string. The encoding rule is: k...
原文題目 Design a stack that supports push, pop, top, and retrieving the minimum ele...
🟨最長的共同子序列 本題取自 Leetcode 1143. Longest Common Subsequence 題目 Given two strings te...
Description You are given the heads of two sorted linked lists list1 and list2....
今天我們繼續看一題字串類型的題目:拆字。 🟨拆字 本題取自 Leetcode 139. Word Break 題目 Given a string s and a...
ꉂ(ˊᗜˋ*)嗨,我是wec,今天是DAY 11。 🔎 題目難度與描述 難度:MEDIUM 題目描述: 在圍成圓形的社區內且不觸發警報的前提下(不能偷相鄰的兩間...
Description Given the head of a singly linked list, reverse the list, and return...
٩(◕‿◕。)۶嗨,我是wec,今天是DAY 10。 🔎 題目難度與描述難度:MEDIUM題目描述:給定一個代表房屋的非負整數數組,每個房子裡有一定的金錢,搶匪...
今天我們來看一個字串類的經典題型:最長回文子字串(LPS) 題目:🟨最長回文子字串(LPS) 本題取自 Leetcode 5. Longest Palindro...
Description Given an integer array nums sorted in non-decreasing order, remove t...
٩(๑•̀ω•́๑)و嗨,我是wec,今天是DAY 9。 🔎 題目難度與描述 難度:MEDIUM 題目描述: 給定一個網格,每個格子都有一個非負數字,從左上角走...
🟨最大正方形 本題取自 Leetcode 221. Maximal Square 題目 Given an m x n binary matrix filled...
(๑>◡<๑)ノ嗨,我是wec,今天是DAY 8。 🔎 題目難度與描述 難度:MEDIUM 題目描述: 有一個排序過的數組被從某個位置旋轉了,比如[...
🟨三角形 本題取自 Leetcode 120. Triangle 題目 Given a triangle array, return the minimum p...
Description Write a function to find the longest common prefix string amongst an...
(๑˃ᴗ˂)ﻭ嗨,我是wec,今天是DAY 7。 🔎 題目難度與描述 難度:EASY 題目描述: 每次可以爬1或2階台階,找出有多少種方法可以到達第n階台階。...
嘿嘿,又到了我們來挑戰 Leetcode 的時候啦!今天我們要處理的題目是 Merge Intervals,光聽名字就覺得像在玩拼圖一樣,把重疊的區間合併在一...
Description Reverse String Write a function that reverses a string. The input...
Description Given an array of integers nums and an integer target, return indice...
前面幾天我們做了幾道題,熟悉了一維數列形式的1-D DP題型,在這類問題中狀態是單一的(例如爬樓梯問題的第i階、扒手問題的第i間房...等等)。 接下來,讓我們...