1081. Smallest Subsequence of Distinct Characters 1081. Smallest Subsequence of Distinct Characters 同 316. Remove Duplicate
316. Remove Duplicate Letters 316. Remove Duplicate Letters 題目要求把一個字串中遇到重複的字元只保留其中一個字元後,將其他所有的重複的字元都移除,並且在最後結果的字串中,需要保留字典序。 這個題目的困難在於題目設立的幾個條件獨立的解決並不困難,困難的地方是要如何同時滿足,
151. Reverse Words in a String 151. Reverse Words in a String 題目是給定一個字串,這個字串的模式是,這個字串很像是一個句子,但是是由多個單字以及「
726. Number of Atoms 726. Number of Atoms 這一題的關鍵在於我們要知道怎麼把元素與價數分離出來。 頗析出來後就是用遞迴的方式來寫。 class Solution: def countOfAtoms(
696. Count Binary Substrings 696. Count Binary Substrings class Solution: def countBinarySubstrings(self, s:
344. Reverse String 344. Reverse String 這一題並不難,主要是熟悉用不同的方式來完成同樣的一件事情 雙指針 class Solution: def reverseString(
8. String to Integer atoi 8. String to Integer (atoi) 這一個題目主要考察的並不是演算法與資料結構,考察的點在於是否可以冷靜地處理邊角案例,在面試中,給出的例子可能並不多,要看看在面試的人是否有辦法清楚的了解題目在幹嘛。