iT邦幫忙

leetcode相關文章
共有 1089 則文章

技術 DAY 6: Best Time to Buy and Sell Stock 貪婪法のEasy題!

(づ。◕‿◕。)づ嗨,我是wec,今天是DAY 6。 🔎 題目難度與描述 難度:EASY 題目描述: 給定一個整數數組prices,其中prices[i]代表某...

技術 Day05 X Leetcode:只出現一次的數字 Single Number

嘿嘿~今天我們來聊一個超級有趣的小挑戰。這個題目應該很適合那些常常覺得「為什麼總是我?」的朋友們~哈哈,開玩笑的啦!題目是這樣的:有一個整數陣列 nums,裡...

技術 Day 05 費氏數列題型(下)

🟨扒手I 回顧 在昨天的文章中留下了一個伏筆:能否換一個思路進行扒手問題的分治法,設計狀態,並且得到對應的轉移式? 題目是 Leetcode 198. Hous...

鐵人賽 影片教學 DAY 9

技術 Day 09:leetcode 2235

今天來解一題 leetcode https://leetcode.com/problems/add-two-integers/

正拳的 Leetcode 150 系列 第 6

技術 [Day 6] 善用 Python 的 collections - OrderDict

這幾天我一直在研究 Python 的 collections 模組。裡面的工具非常豐富,但也容易讓人迷失。今天,我們將深入探討一個特別有用的資料結構:Order...

技術 DAY 5:Reverse Linked List 高頻題 雖然是easy但還是要考你( *-ᴗ-)ง✧

(。・∀・)ノ゙嗨,我是wec,今天是Day 5。 🔎 題目難度與描述 難度:EASY 題目描述: 給定一個單向鏈結串列的首節點,反轉該串列,並返回反轉後的串列...

技術 Day 04 費氏數列題型(中)

🟨扒手I 本題取自 Leetcode 198. House Robber 題目 You are a professional robber planning t...

正拳的 Leetcode 150 系列 第 5

技術 [Day 5] 善用 Python 的 collections - deque

昨天我們講到 collections 模組,今天我們來介紹 collections 模組中的 deque:double-ended queue,也就是雙端佇列。...

技術 DAY 4:Merge Two Sorted Lists 每個人的easy第二題!

(* •̀ᴗ-)✧嗨,我是wec,今天是Day 4。 🔎 題目難度與描述 難度:EASY 題目描述: 給定兩個已經按升序排列的鏈結串列l1 和l2,將這兩個串列...

技術 Day03 X Leetcode:無重複字元的最長子串 Longest Substring Without Repeating Characters

嘿!各位工程師朋友們,今天我們來聊聊一個相當經典的 Leetcode 題目,叫做「Longest Substring Without Repeating Ch...

正拳的 Leetcode 150 系列 第 4

技術 [Day 4] 善用 Python 的 collections - Counter

探索 Python 的 collections 模組 在 Python 中,collections 模組提供了一組高效的資料結構,這些資料結構擴展了內建類別如...

技術 DAY 3:Two Sum 每個人的easy第一題!

(o´▽`o)ノ嗨,我是wec,今天是Day 3。 🔎 題目難度與描述 難度:EASY 題目描述: 給定一個整數數組 nums 和一個目標值 target,請在...

正拳的 Leetcode 150 系列 第 3

技術 [Day 3] 善用 Python 基本資料結構:dictionary

今天來看的是 Leetcode 的第一題,編號為 1 的 Two Sum。 問題描述 給定一個整數數組 nums 和一個整數 target,請你在該數組中找出和...

技術 Day 02 動態規劃簡介

何謂動態規劃 實際上,與其說動態規劃是一個演算法,不如說其描述的是「一群演算法」背後共通的拆解邏輯更為恰當。動態規劃的核心概念分為兩個部分: 將複雜的母問題...

技術 前言介紹:精進演算法,掌握技術詞 - 兩數之和 Two Sum

為什麼學習演算法? 第一次接觸 Leetcode 時,看到題目時直接傻住,因為題目都是英文,光是理解題意就讓我非常頭疼。那時,我發現自己的英文能力不足,甚至無...

技術 Day 01 引言、刷題實用Python語法整理

本文大綱 引言 LeetCode 介紹 Python 複習 list(列表)與string(字串)的切片 generator 與 list comprehe...

正拳的 Leetcode 150 系列 第 2

技術 [Day 2] 善用 Python 基本資料結構:集合 Set

Neetcode 150:從 Arrays & Hashing 開始 Neetcode 150 將 Leetcode 上的 150 個問題分為 18 個...

正拳的 Leetcode 150 系列 第 1

技術 [Day 1] 刷題從 Neetcode 網站開始

在軟體工程師的面試中,Coding 面試是不可或缺的一環。為了有效準備這類面試,Leetcode 這樣的教學網站成為許多人的首選。你可以使用熟悉的編程語言,如...

技術 [9/7] 樹裡的鏈

題目 1367. Linked List in Binary Tree難度: 中等偏難 題意 給定一串連鏈接head及一二元樹root,求head是否存在於二元...

刷題筆記 系列 第 29

技術 [Day29] Reverse Linked List

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

刷題筆記 系列 第 30

技術 [Day30] Reverse Linked List II

Given the head of a singly linked list and two integers left and right where le...

刷題筆記 系列 第 27

技術 [Day27] Find All Duplicates in an Array

Given an integer array nums of length n where all the integers of nums are in t...

技術 [9/5] 今天骰到六

題目 2028. Find Missing Observations難度: 中等但異常簡單 題意 有m+n個六面骰子,給定長度m的整數陣列rolls,代表前m個...

技術 [9/3] 字串換整數

題目 1945. Sum of Digits of String After Convert難度: 簡單 題意 給定一字串s與整數k將字串s中的字元按照字母序轉...

技術 [9/2] 找換粉筆的傢伙

題目: 1894. Find the Student that Will Replace the Chalk題意:給定一個整數陣列chalk,以及一個整數k現場...

8月 LeetCode Daily 見聞錄 系列 第 30

技術 [8/30] 2699. Modify Graph Edge Weights

HardRelated Topics: Graph / Heap (Priority Queue) / Shortest PathLeetCode Sourc...

8月 LeetCode Daily 見聞錄 系列 第 29

技術 [8/29] 947. Most Stones Removed with Same Row or Column

MediumRelated Topics: Hash Table / Depth-First Search / Union Find / GraphLeetC...

8月 LeetCode Daily 見聞錄 系列 第 28

技術 [8/28] 1905. Count Sub Islands

MediumRelated Topics: Array / Depth-First Search / Breadth-First Search / Union...

8月 LeetCode Daily 見聞錄 系列 第 26

技術 [8/26] N-ary Tree Postorder Traversal

EasyRelated Topics: Stack / Tree / Depth-First SearchLeetCode Source 解題想法 後序尋訪...

8月 LeetCode Daily 見聞錄 系列 第 25

技術 [8/25] 145. Binary Tree Postorder Traversal

EasyRelated Topics: Stack / Tree / Depth-First Search / Binary TreeLeetCode Sou...