2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 768
Day 16
2024-09-30
233
0
code review 在 CTF 中,程式碼分析是常見的題型之一,要求解題者從已編譯好的程式或不完整的提示中推理出原始程式的運作邏輯,進而找到 flag。相比...
Day 16
2024-09-30
179
0
There is a class with m students and n exams. You are given a 0-indexed m x n in...
Day 16
2024-09-30
246
0
匿名函式 anonymous function 是指在 JavaScript 中沒有名稱的函式,通常用於一次性的操作或者作為參數傳遞給其他函式,此外,匿名函式不...
Day 16
2024-09-30
332
0
嘿嘿~今天要來解一個大家都會碰到的經典題目:Reverse Linked List(反轉鏈結串列)。想像一下,我們要把一列數字倒過來,這就像翻書一樣,把後面...
Day 16
2024-09-30
480
0
原文題目Given an unsorted array of integers nums, return the length of the longest c...
Day 16
2024-09-30
184
0
DAY 16 試題 問題描述 給定一個單向鏈結串列的頭節點 head,以及一個整數 n,要求從該鏈結串列中移除倒數第 n 個節點,並返回修改後的鏈結串列的頭節...