2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 758
Day 20
2024-10-04
108
0
原文題目Given the head of a linked list, remove the nth node from the end of the lis...
解題程式碼 var findCircleNum = function (isConnected) { const visited = new Set();...
今天來解YKL21(UVA10922):2 the 9s 2 the 9s 主要是判斷輸入是不是9的倍數如果是的話,再計算 9-degree EX:input...
9/29忙著看棒球,來不及刷當天的難題。9月的badge還沒拿到。還好Leetcode每個月有兩次拯救(redeem)的機會,可以回溯完成沒刷到的daily題~...
Given a positive integer n, you can apply one of the following operations: If n...
環狀鏈結串列環狀鏈結串列和單向鏈結串列不同在於它最後一個節點會指向鏈結串列的第一個節點,形成一個環狀結構。這使得從任一節點都可以循環遍歷整個串列,並不存在指向...