Skip to content

Instantly share code, notes, and snippets.

/*
3rd smallest : 15
6th smallest: 75
4th: --> 25
Class Node {
int val;
Node left;
Node right;
package com.dam.app.leetcode.easy;
import org.junit.Test;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* Created by 212546502 on 6/18/18.