This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
public class Main { | |
private static class Node { | |
public final char value; | |
public final Node left; | |
public final Node right; | |
public Node(char value, Node left, Node right) { |