2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 768
Day 17
2024-08-31
543
0
2859. Sum of Values at Indices With K Set Bits tags: Easy、Bitwise You are given...
Day 27
2024-10-11
542
0
解題程式碼 var isNStraightHand = function (hand, groupSize) { const handMap = new M...
題目 3217. Delete Nodes From Linked List Present in Array難度: 中等 題意 給定一個鏈結串列head與一整...
Day 16
2024-08-25
541
0
83. Remove Duplicates from Sorted List 题目描述: 給定一個已排序的Linked List,刪除所有重複的元素,使每個元素...
Day 25
2024-10-09
541
0
解題程式碼 var subsetsWithDup = function (nums) { const result = [[]]; const subs...
Day 17
2024-08-17
539
0
MediumRelated Topics: Array / Dynamic ProgrammingLeetCode Source 解題想法 暴力解的話,會使...