Google Interview Question for Software Engineers


Country: United States




Comment hidden because of low score. Click to expand.
8
of 8 vote

I am thinking of backtracking solution to this problem.

private boolean smashable(String word, Stack<String> wordStack, Set<String> dictionary) {
	int wordLen = word.length();
	if (wordLen == 0) {
		wordStack.add(word);
		return true;
	}

	for (int i = 0; i < wordLen; i++) {
		String smashedWord = word.substring(0, i) + word.substring(i + 1);
		if (smashedWord.equals("") || dictionary.contains(smashedWord)) {
			wordStack.push(word);
			if (smashable(smashedWord, wordStack, dictionary))
				return true;
			else
				wordStack.pop();
		}
	}
	return false;
}


// Inside Main
if(smashable(word, wordStack, dictionary)) {
	System.out.println(wordStack.toString());
}
else {
	System.out.println("Not Smashable!!!");
}

- Prashanth February 06, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

def smashable(string, words):
    return dfs(string,words)

def dfs(string, words):
    print(string)
    if len(string) == 1:
        if string in words:
            return True
        else:
            return False
    for i in range(len(string)):
        curr_string = string[:i]+string[i+1:]
        if curr_string in words:
            return dfs(string[:i]+string[i+1:], words)

- Scooby02 February 07, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

private static void smashableString(StringBuffer s) {
int i = 0;
while (!s.equals("")) {
if (s.length() - 1 == 0) {
System.out.println(" ");
return;
}
if (i > s.length() - 1) {
i = 0;
}
s.deleteCharAt(i);
System.out.println(s);
i++;
}

}

- shubham dwivedi February 14, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

def f(s, d):
  h = set()
  l = [s]
  while l:
    i = l.pop()
    if len(i) == 1 and i in d:
      return True
    else:
      for j in range(len(i)):
        new = i[:j] + i[j+1:]
        if new in d and new not in h:
          l.append(new)
          h.add(new)
  return False

- randythai1996 February 19, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Instead of backtracking, its better to build solution bottoms up.
Start with all candidates that are 1-letter and present in the dict.
For each candidates with size i, see if you can build size i+1 candidate from the dict.
Keep repeating until you hit size = length(word)


Working solution:

private boolean solve(String word, String[] dict) {
        Map<Integer, List<String>> lengthToWordsMap = new HashMap<>();
        for (String s : dict) {
            addWordToDict(lengthToWordsMap, s);
        }
        addWordToDict(lengthToWordsMap, word);
        List<boolean[]> candidates = getCandidates(new boolean[word.length()], 1, word, lengthToWordsMap);

        for (int i = 2; i <= word.length(); i++) {
            if (candidates.isEmpty()) {
                break;
            }
            List<boolean[]> next = new ArrayList<>();
            for (boolean[] candidate : candidates) {
                next.addAll(getCandidates(candidate, i, word, lengthToWordsMap));
            }
            candidates = next;
        }
        for (boolean[] candidate : candidates) {
            boolean success = true;
            for (boolean b : candidate) {
                if (!b) {
                    success = false;
                    break;
                }
            }
            if (success) return true;
        }
        return false;
    }

    private void addWordToDict(Map<Integer, List<String>> lengthToWordsMap, String s) {
        List<String> list = lengthToWordsMap.getOrDefault(s.length(), new ArrayList<>());
        list.add(s);
        lengthToWordsMap.put(s.length(), list);
    }

    private List<boolean[]> getCandidates(boolean[] taken, int size, String word, Map<Integer, List<String>> lengthToWordsMap) {
        List<boolean[]> rv = new ArrayList<>();
        char[] arr = word.toCharArray();
        for (String candidate : lengthToWordsMap.getOrDefault(size, Collections.emptyList())) {
            boolean[] chosen = new boolean[word.length()];
            for (int i = 0; i < taken.length; i++) {
                chosen[i] = taken[i];
            }
            int candIdx = 0;
            for (int i = 0; i < chosen.length; i++) {
                if (arr[i] == candidate.charAt(candIdx)) {
                    chosen[i] = true;
                    candIdx++;
                }
                if (candIdx >= candidate.length()) {
                    break;
                }
            }
            int chosenIndices = 0;
            for (boolean b : chosen) {
                if (b) chosenIndices++;
            }
            if (candIdx == size && chosenIndices == size) {
                rv.add(chosen);
            }
        }
        return rv;
    }

- majuonas May 04, 2018 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More