iT邦幫忙

leetcode相關文章
共有 1089 則文章

技術 Day26 Trie題目:208. Implement Trie (Prefix Tree)

原文題目 A trie (pronounced as "try") or prefix tree is a tree data struct...

技術 Day24 Matrix題目3:240. Search a 2D Matrix II

原文題目 Write an efficient algorithm that searches for a value target in an m x n i...

技術 Day23 Matrix題目2:73. Set Matrix Zeroes

原文題目 Given an m x n integer matrix matrix, if an element is 0, set its entire ro...

技術 Day22 Matrix題目1:48. Rotate Image

原文題目 You are given an n x n 2D matrix representing an image, rotate the image by...

技術 【LeetCode with C: A Series of Problem-Solving Techniques】-- Valid Parentheses

Description Given a string s containing just the characters '(', ')', '{', '}',...

鐵人賽 AI/ ML & Data DAY 25

技術 Day25: LLMs 刷題的真相

距今約兩個月前(2024.8.21),有位Reddit的網友利用Claude3.5 Sonnet進行LeetCode刷題,並用9美元在24小時內完成633道題目...

技術 【LeetCode with C: A Series of Problem-Solving Techniques】-- Linked List Cycle

Description Given head, the head of a linked list, determine if the linked list...

技術 Day 12 字串題型(四) 最長的回文子序列(LPS)

🟨最長回文字子序列(解法1) 題目 本題取自 Leetcode 516. Longest Palindromic Subsequence Given a str...

技術 Day19 Stack題目3:739. Daily Temperatures

原文題目 Given an array of integers temperatures represents the daily temperatures,...

技術 Day18 Stack題目2:394. Decode String

原文題目 Given an encoded string, return its decoded string. The encoding rule is: k...

技術 Day17 Stack題目1:155. Min Stack

原文題目 Design a stack that supports push, pop, top, and retrieving the minimum ele...

技術 Day 11 字串題型(三) 最長的共同子序列(LCS)

🟨最長的共同子序列 本題取自 Leetcode 1143. Longest Common Subsequence 題目 Given two strings te...

技術 【LeetCode with C: A Series of Problem-Solving Techniques】-- Merge Two Sorted List

Description You are given the heads of two sorted linked lists list1 and list2....

技術 Day 10 字串題型(二) 拆字

今天我們繼續看一題字串類型的題目:拆字。 🟨拆字 本題取自 Leetcode 139. Word Break 題目 Given a string s and a...

技術 DAY 11:House Robber II DPの基礎概念!

ꉂ(ˊᗜˋ*)嗨,我是wec,今天是DAY 11。 🔎 題目難度與描述 難度:MEDIUM 題目描述: 在圍成圓形的社區內且不觸發警報的前提下(不能偷相鄰的兩間...

技術 【LeetCode with C: A Series of Problem-Solving Techniques】-- Reverse Linked List

Description Given the head of a singly linked list, reverse the list, and return...

技術 DAY 10:House Robber DPの基礎概念!

٩(◕‿◕。)۶嗨,我是wec,今天是DAY 10。 🔎 題目難度與描述難度:MEDIUM題目描述:給定一個代表房屋的非負整數數組,每個房子裡有一定的金錢,搶匪...

技術 Day 09 字串題型(一) 最長的回文子字串(LPS)

今天我們來看一個字串類的經典題型:最長回文子字串(LPS) 題目:🟨最長回文子字串(LPS) 本題取自 Leetcode 5. Longest Palindro...

技術 DAY 9:Minimum Path Sum DPの基礎概念!

٩(๑•̀ω•́๑)و嗨,我是wec,今天是DAY 9。 🔎 題目難度與描述 難度:MEDIUM 題目描述: 給定一個網格,每個格子都有一個非負數字,從左上角走...

技術 Day 08 矩陣題型(下)

🟨最大正方形 本題取自 Leetcode 221. Maximal Square 題目 Given an m x n binary matrix filled...

技術 DAY 8:Search in Rotated Sorted Array 中級の開始!

(๑>◡<๑)ノ嗨,我是wec,今天是DAY 8。 🔎 題目難度與描述 難度:MEDIUM 題目描述: 有一個排序過的數組被從某個位置旋轉了,比如[...

技術 Day 07 矩陣題型(中)

🟨三角形 本題取自 Leetcode 120. Triangle 題目 Given a triangle array, return the minimum p...

技術 【LeetCode with C: A Series of Problem-Solving Techniques】-- Longest Common Prefix

Description Write a function to find the longest common prefix string amongst an...

技術 DAY 7:Climbing Stairs 最後一題easy!

(๑˃ᴗ˂)ﻭ嗨,我是wec,今天是DAY 7。 🔎 題目難度與描述 難度:EASY 題目描述: 每次可以爬1或2階台階,找出有多少種方法可以到達第n階台階。...

技術 Day06 X Leetcode:合併區間

嘿嘿,又到了我們來挑戰 Leetcode 的時候啦!今天我們要處理的題目是 Merge Intervals,光聽名字就覺得像在玩拼圖一樣,把重疊的區間合併在一...

技術 【LeetCode with C: A Series of Problem-Solving Techniques】-- Reverse String

Description Reverse String Write a function that reverses a string. The input...

技術 【LeetCode with C: A Series of Problem-Solving Techniques】-- two sum

Description Given an array of integers nums and an integer target, return indice...

技術 Day 06 矩陣題型(上)

前面幾天我們做了幾道題,熟悉了一維數列形式的1-D DP題型,在這類問題中狀態是單一的(例如爬樓梯問題的第i階、扒手問題的第i間房...等等)。 接下來,讓我們...