Amazon Interview Question for SDE1s


Country: United States




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

First Approach: Perform a dfs or bfs on the tree and retrieve the results. Check whether all of them are the same element. Second approach: As you are traversing, use a set or hash map to make sure they are all the same elements and if they are different return False.

Simple solution in Python outlining the first approach:

def preOrderRecursive(root):
  res = []
  def helper(root, res):
    if not root:
      return

    res.append(root.val)
    for child in root.children:
      helper(child, res)

  helper(root, res)
  return res

def isUnivalTree(root):
  result = preOrderRecursive(root)
  return all(result[0] == x for x in result[1:])

Test code:

class Node:
  def __init__(self, val):
    self.val = val
    self.children = []

'''
Construct the following tree:
            1
          / | \
        1   2  1
            /\  \
            1 3  1
'''
root = Node(1)
root.children = [Node(1), Node(2), Node(1)]
root.children[1].children = [Node(1), Node(3)]
root.children[2].children = [Node(1)]
print(isUnivalTree(root)) # Output: False

'''
Construct the following tree:
            1
          / | \
        1   1  1
            /\  \
            1 1  1
'''
root = Node(1)
root.children = [Node(1), Node(1), Node(1)]
root.children[1].children = [Node(1), Node(1)]
root.children[2].children = [Node(1)]
print(isUnivalTree(root)) # Output: True

- prudent_programmer April 04, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Java

public boolean isUnivalTree (TreeNode root)
    {
        int value = root.children.isEmpty() ? root.val : root.children.get(0).val;
        boolean result = true;
        if (root==null) return false;
        for (TreeNode node : root.children)
        {
            result = result & (node.val==value) & isUnivalTree(node);
        }
        return result;
    }

- CozILovYou April 05, 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