[Hackerrank] – Super Reduced Strings

    by nikoo28

    Let us try to understand this problem statement first. We have some strings that needs to be super reduced in size. The string consists of english alphabets from a to z, and they can be duplicated at some places. If we see two adjacent characters that are same, they can be eliminated. Following this pattern we have to return a super compressed/reduced string.

    Let us look at some sample test cases:

    Input: aabcccdd
    Output: “bc”
    Explanation:
    aabcccdd -> bcccdd -> bcdd -> bc
    (we eliminate two same adjacent characters at each step)

    Input: abba
    Output: “”
    Explanation:
    abba -> aa -> ” “
    The string eventually becomes empty after getting super reduced

    super reduced strings
    Fig: Visualization of super reduced strings

    Method 1:

    A brute force solution to the problem is very straight forward. You start to analyze the string from the beginning, and as soon as you see a matching adjacent character, remove both the characters. Start again from the start position and keep on repeating the process.

    You will eventually land up with super reduced strings. But the main problem with this approach is that you will waste a lot of time going over the string again and again. We need to find a time efficient way to solve it.

    Method 2:

    Whenever we want to look back at the previous elements, a stack data structure is a very wise choice.

    using a stack for form super reduced string
    Fig: Using a stack to reduce

    One approach to solve the problem could be:

    • Start with the first character.
    • Check the top of stack. If it is same, then pop the stack.
    • If the top character is different/empty, just push the current character into the stack.

    Eventually, when this process runs for the entire string, all the adjacent characters will get removed. You will be left with a reduced string with characters that could not find a matching adjacent character.

    Code:

      public String superReducedStringUsingStacks(String str) {
    
        Stack<Character> characterStack = new Stack<>();
    
        for (int i = 0; i < str.length(); i++) {
          char x = str.charAt(i);
    
          if (characterStack.isEmpty())
            characterStack.push(x);
          else if (x == characterStack.peek())
            characterStack.pop();
          else
            characterStack.push(x);
        }
    
        StringBuilder resultBuilder = new StringBuilder();
        for (Character character : characterStack)
          resultBuilder.append(character);
    
        return resultBuilder.length() == 0 ?
            "Empty String" : resultBuilder.toString();
      }
    Code language: Java (java)

    Time Complexity: O(n)
    Space Complexity: O(n)

    You can also find the code and test cases on Github.

    Video Explanation:

    YouTube player
    0 comments
    2 FacebookTwitterLinkedinWhatsappEmail
  • Misc

    [Hackerrank] – Number Line Jumps Solution

    by nikoo28
    4 minutes read

    Let us try to understand this problem statement first. We are in charge of a fancy circus and 2 kangaroos have to jump on a number line. The interesting part is that both the kangaroos have a different start position, and different jump distances. It is a little tricky to understand, the problems asks to calculate the number line jumps such that both the kangaroos are at the same position. We will try to simplify this using some diagrams, and see how the kangaroos actually jump. In the given test …

    1 FacebookTwitterLinkedinWhatsappEmail
  • Arrays

    [Hackerrank] – Equal Solution

    by nikoo28
    6 minutes read

    Let us try to understand this problem statement first. It is actually very verbose. We will try to simplify it as much as possible. Christy wants to give chocolates to her colleagues, and at the same time tries to ensure that everyone has equal chocolates at the end. To achieve this she either gives 1,2, or 5 chocolates to everyone except any one individual. Every-time she does this, it is counted as 1 operation. We need to make sure that Christy can achieve this task in the minimum number of …

    2 FacebookTwitterLinkedinWhatsappEmail
  • Question: Given a two strings, find the minimum number of characters that must be deleted to make them anagrams. Input: str1 = “a b c”, str2 = “a m n o p”Output: 6 Let us try to understand this problem statement and its test case first. We have two strings of english alphabet which may or may not have the same length. Anagrams are two words with same characters and frequencies. It is not necessary that the order of the characters is same. We have to determine, how many total …

    0 FacebookTwitterLinkedinWhatsappEmail
  • Question: Given a string, count the number of times the letter ‘a’ is repeated. Input: str = “abcac”, n= 10 Output: 4 Let us try to understand this problem statement and its test case first. You have a string of lowercase English letters, that is repeated infinitely many times. Along with it, you also have a number ‘n’. You need to find out how many times the letter a appears in the first n characters of this infinite string. Let us look at a sample test case. Upon looking at …

    0 FacebookTwitterLinkedinWhatsappEmail

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept Read More