Leetcode 回文子串
摘要:
Day 16 学习中心扩展法 class Solution { public int countSubstrings(String s) { // 从中心扩展, int count = 0; int n = s.length(); // 字符串长度分奇数和偶数,但回文中心的可能性是确定的 // 枚举 阅读全文
posted @ 2024-03-31 20:00 安静的聆 阅读(3) 评论(0) 推荐(0) 编辑