Recent Activity
Nesquate
User for 1 year
Created Content
Recently Created Pages View All
建立新的 Spring 專案
連上 https://start.spring.io/ Project 部份選擇「Gradle - Kotlin」(這會使用 Kotlin DSL) Spring Boot 部份選擇後...
0066 - Plus One
大意 有一個整數陣列,求裡面數值 +1 後的狀況 例如: Input: digits = [1,2,3] Output: [1,2,4] Explanation: The array ...
0058 - Length of Last Word
大意 有一串以空格隔開的字句,求最後一個單字的長度。 例如: Input: s = " fly me to the moon " Output: 4 Explanatio...
0035 - Search Insert Position
大意 搜尋已經排列好的陣列,找出目標數字,並回傳該數字所在的 Index 如果找不到目標數字,就回傳該插入在哪邊的 Index。 以下是 LeetCode 的三個範例: Example...
0028 - Find the Index of the First Occurrence in a String
大意 找出目標字串片段第一次出現的起始 index 例如 mississippi ,目標字串為 issip,那 index 要回傳為 4 個人思考 因為經常 Time out,我不知道是...