2024 iThome 鐵人賽
Share More Gain More
佛心分享-刷題不只是刷題
選手 27 文章 768
今天也來解Reverse的題目 題目 Ready Gladiator 0 ;redcode ;name Imp Ex ;assert 1 mov 0, 1 e...
Day 14
2024-09-28
261
0
原文題目 Given an integer array nums and an integer k, return the kth largest elemen...
Day 21
2024-10-05
261
0
當呼叫 setState 後會發起 component re-render,React 會啟動 reconciliation 流程,最終更新瀏覽器的 DOM 並...
Day 17
2024-10-01
261
0
Shallow clone 又稱淺複製,淺複製是將一個物件的 第一層屬性 複製到另一個物件上,讓兩個物件擁有相同的第一層屬性。這意味著當屬性是基本型別(如字串、...
Day 10
2024-09-24
258
0
Problem : Given a string s containing just the characters '(', ')', '{', '}', '[...
這題要生成 "Count and Say" 序列的第 n 個數字,再根據前個數字來計算題目要求:生成第 n 個數字的 Count and S...