All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g1301_1400.s1332_remove_palindromic_subsequences.Solution Maven / Gradle / Ivy

There is a newer version: 1.35
Show newest version
package g1301_1400.s1332_remove_palindromic_subsequences;

// #Easy #String #Two_Pointers #2022_03_19_Time_0_ms_(100.00%)_Space_39.9_MB_(78.40%)

public class Solution {
    public int removePalindromeSub(String s) {
        if (s.isEmpty()) {
            return 0;
        }
        if (s.equals((new StringBuilder(s)).reverse().toString())) {
            return 1;
        }
        return 2;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy