2130. Maximum Twin Sum of a Linked List

題目連結: 2130. Maximum Twin Sum of a Linked List 題意 給定一個必定為偶數個 node 的 linked list 找出每組 twin 的最大和,twin 的定義如下: * n 為節點總數,當 i 滿足 0 <= i <= (n / 2) - 1

1898. Maximum Number of Removable Characters

題目連結: 1898. Maximum Number of Removable Characters 題意 給定兩個字串 s 跟 p, p 為 s 的 subsequence。 給定一個數字陣列 removable,代表從 s 移除字元的 index: * 找出數字 k,代表依照 removable 的前 k 個 index 從 s

1721. Swapping Nodes in a Linked List

題目連結: 1721. Swapping Nodes in a Linked List 題意 給定一個 linked list 以及一個數字 k,將從頭數第 k 個節點與倒數第 k 個節點交換。 * 1-indexed 限制 * The number of nodes in the list is n. * 1 <= k

1498. Number of Subsequences That Satisfy the Given Sum Condition

題意 給一個數字陣列,計算出 subsequence 中最大與最小元素相加後不大於 target 的 subsequence 總數 * 回傳型別為 int,為避免 overflow,需要對答案取 mod $$10^9 + 7$$ * 空陣列不算答案 限制 * 1 <= nums.length <= 10^5 * 1 <= nums[i] <= 10^