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
package net.rodrigogarcia.net.Trees; | |
import java.io.*; | |
import java.util.*; | |
public class Solution { | |
static class Part { | |
public String getName() { return "X"; } | |
} |
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
public class SinglyNode { | |
public SinglyNode next = null; | |
public int value; | |
public SinglyNode(int d) | |
{ | |
value = d; | |
} | |
public static SinglyNode orderNodes(SinglyNode node, int value) |
OlderNewer