Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import java.util.*;
public class Main {
public static <T> Set<T> toSet(Iterable<T> iterable) {
Collections d;
Set<T> temp = new HashSet<>();
iterable.forEach(temp::add);
return temp;
}
}