2024-02-18 解題區►Leetcode►Medium Leetcode 3040 - Maximum Number of Operations With the Same Score II 題目 Problem# 給你一個整數陣列 nums 你可以做三種操作: 刪除開頭兩個數字 刪除結尾兩個數字 刪除頭尾各一個數字 問你最多可以做幾次操作,且每次操作所刪除的數字加起來都要相同 Read More
2024-02-18 解題區►Leetcode►Medium Leetcode 3039 - Apply Operations to Make String Empty 題目 Problem# 給你一個字串 s,每次都從中刪除所有第一次出現的字元,問你刪除到最後一步(再刪除一次就變成空字串)時,所刪除的子字串是什麼? 測資限制# $1 \le s \le 5 \cdot 10^5$ Read More
2024-02-18 解題區►Leetcode►Easy Leetcode 3038 - Maximum Number of Operations With the Same Score I 題目 Problem# 給你一個整數陣列 nums 你每次可以從中刪除頭兩個數字,問你對於這個整數陣列來說,最多可以刪除幾次且每次刪除的數字加總起來要一樣,回傳最多可以刪除的次數。 測資限制# $2 \le n \le 100$ $1 \le val \le 1000$ Read More
2024-02-16 解題區►Leetcode►Hard Leetcode 1481 - Least Number of Unique Integers after K Removals 題目 Problem# 給你一個整數陣列 arr 和一個整數 k ,問你在移除 k 個元素後剩下最少幾種不同的數字? 測資限制# $1 \le n \le 10^5$ $1 \le val \le 10^9$ $0 \le k \le n$ Read More
2024-02-13 解題區►Leetcode►Medium Leetcode 2108 - Find First Palindromic String in the Array 題目 Problem# 給你一個字串陣列 words 回傳第一個是回文的字串,如果沒有的話回傳空字串。 測資限制# $1 \le n, s \le 100$ Read More
2024-02-08 解題區►Leetcode►Medium Leetcode 279 - Perfect Squares 題目 Problem# 給你一個整數 n,回傳最少需要幾個完全平方數加起來等於它? 測資限制# $1 \le n \le 10^4$ Read More
2024-02-05 解題區►Leetcode►Medium Leetcode 387 - First Unique Character in a String 題目 Problem# 給字串 s 回傳第一個非重複字元的 index,如果不存在則回傳 -1 測資限制# $1 \le n \le 10^5$ Read More
2024-02-01 解題區►Leetcode►Medium Leetcode 2966 - Divide Array Into Arrays With Max Difference 題目 Problem# 給你一個整數陣列 nums 大小 n 還有一個正整數 k,問你 nums 可不可以變成一推大小 3 的子陣列,每個子陣列中最大與最小的差不能超過 k,如果可以的話,回傳轉換後的陣列;不能的話,回傳空陣列。 測資限制# $1 \le n, k \le 10^5$ $1 \le \text{nums}[i] \le 10^5$ Read More
2024-01-16 解題區►Leetcode►Medium Leetcode 380 - Insert Delete GetRandom O(1) 題目 Problem# 要你實作一個 class RandomizedSet() 有三個操作: 插入數字、移除數字、隨機取出數字,三種操作都必須在平均 $O(1)$ 時間複雜度下。 測資限制# $-2^{31} \le val \le 2^{31} - 1$ 最多 $2\cdot 10^5$ 次呼叫 Read More
2024-01-15 解題區►Leetcode►Medium Leetcode 2225 - Find Players With Zero or One Losses 題目 Problem# 給你一個陣列 match[i] = (winner_i, loser_i) 代表winner_i 在第 i 場比賽贏了 loser_i,要你回傳沒有輸過的人、和只輸一場的人有哪些(回傳要遞增排序)。 測資限制# $1 \le n \le 10^5$ $1 \le \text{winner}_i, \text{loser}_i \le 10^5$ Read More