647. 回文子串

boolean默认类型是false

647. 回文子串_第1张图片

class Solution {
    public int countSubstrings(String s) {
        if(s == null) return 0;
        int result = 0;
        int length = s.length();
        boolean[][] dp = new boolean[length][length];
        for(int j=0;j

你可能感兴趣的:(算法,动态规划)