3324. Find the Sequence of Strings Appeared on the Screen - Medium
前往題目
想法
- 先把第一個字母當基準點準備好,再來就直接循環建立剩餘的字母
思路
weekly contest 420的題目
完賽後再看一遍其實直接循環建立就好
- 循環把字母建立好
- 先放入
a
,然後加到結果,接著比較字母是否和目標的一樣,不是的話ascii + 1
再加入結果再比較
Code
3324. Find the Sequence of Strings Appeared on the Screen - Medium
https://f88083.github.io/2024/10/22/3324-Find-the-Sequence-of-Strings-Appeared-on-the-Screen-Medium/