2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 757
You are given a 2D integer array ranges and two integers left and right. Each ra...
今天也繼續繼續加油、繼續刷刷刷刷刷刷~————————————我是可愛的題目分隔線———————————— 題目1:在Python裡,find( ) 和rfin...
原文題目Given a linked list, swap every two adjacent nodes and return its head. You...
題目:給定兩個整數陣列,分別表示二元樹的前序遍歷和中序遍歷結果,請構造該二元樹並回傳其根節點。 範例: 前序遍歷 (preorder) = [3, 9, 20,...
今天我們繼續看一題字串類型的題目:拆字。 🟨拆字 本題取自 Leetcode 139. Word Break 題目 Given a string s and a...
這題要生成一個數組的所有可能排列,且每個數字都是唯一的,生成排列問題通常涉及遞迴或迭代的方法生成所有可能的數組順序,典型的回溯問題,適合用來處理排列組合。題目要...