409. Longest Palindrome

題目 思路 使用Counter 對數據進行計數,添加1個奇數 對其他的奇數-1處理,求和,即可。 我的總體思路是沒有問題的,但代碼細節沒處理好,效率極低。 我的代碼(效率極低) from collections import Counter class Solution: def longestPalindrome(self, s: str) -> int: cnt=Cou
相關文章
相關標籤/搜索