DAY 4 試題
問題描述
給定一個字串 s,要求返回該字串中的最長回文子字串。回文指的是正著讀和反著讀都相同的字串。
範例:Input: s = "...
今天來解YKL29(UVA11417):GCD
GCD
找兩個數字之間的最大公因數
用a%b來縮小問題的規模
假設我們要計算 GCD(48, 18):48 %...
今天我們繼續看一題字串類型的題目:拆字。
🟨拆字
本題取自 Leetcode 139. Word Break
題目
Given a string s and a...
題目
題目翻譯
將 k 個已經排好順序的 linked list 合併成為一個排好序的 list
解題步驟
初始化最小堆(優先隊列):
優先隊列可以幫助...
原文題目Given a string s, find the length of the longest substring without repeating...
Given a positive integer n, you can apply one of the following operations:
If n...