codingdie
Results
2
comments of
codingdie
普通的暴力复杂度n^3 ,动态规划n*n ,马拉车算法n。3个月前刷leetcode的代码: ```java public String longestPalindrome(String s) { if (s.isEmpty()) return ""; if (s.length() == 1) return s; StringBuffer stringBuffer = new StringBuffer(); stringBuffer.append("#"); for (char ch : s.toCharArray())...
hello, I encountered the same problem in the production environment, is there any plans to solve this problem?