#Interview Question
You are given a Trie (a tree in which each Node contains a character of a word inserted into it) populated with n words. The class definitions of the Node and Trie classes are as follows:
Node:
class Node:
def __init__(self, cargo, end=False):