Python實現"找不一樣"的一種方法

給定兩個字符串 s 和 t,它們只包含小寫字母。python 字符串 t 由字符串 s 隨機重排,而後在隨機位置添加一個字母。算法 請找出在 t 中被添加的字母spa Example:code Input: s = "abcd" t = "abcde" Output: e Explanation: 'e' is the letter that was added. 1:將s和t字符串用set
相關文章
相關標籤/搜索