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

g0701_0800.s0784_letter_case_permutation.Solution Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
package g0701_0800.s0784_letter_case_permutation;

// #Medium #String #Bit_Manipulation #Backtracking

import java.util.ArrayList;
import java.util.List;

public class Solution {
    private List ans = new ArrayList<>();

    public List letterCasePermutation(String s) {
        helper(s, 0, "");
        return ans;
    }

    public void helper(String s, int curr, String temp) {
        if (curr == s.length()) {
            ans.add(temp);
            return;
        }
        if (Character.isDigit(s.charAt(curr))) {
            helper(s, curr + 1, temp + s.substring(curr, curr + 1));
        } else {
            if (Character.isLowerCase(s.charAt(curr))) {
                helper(s, curr + 1, temp + s.substring(curr, curr + 1));
                helper(s, curr + 1, temp + (s.substring(curr, curr + 1)).toUpperCase());
            } else {
                helper(s, curr + 1, temp + s.substring(curr, curr + 1));
                helper(s, curr + 1, temp + (s.substring(curr, curr + 1)).toLowerCase());
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy