Skip to content

Instantly share code, notes, and snippets.

View antonio081014's full-sized avatar
💭
Learning SwiftUI

Yi antonio081014

💭
Learning SwiftUI
View GitHub Profile
@antonio081014
antonio081014 / GenericMergeSort.java
Last active December 19, 2015 00:59
This is the code implementing Merge Sort.
import java.util.ArrayList;
import java.util.List;
public class Main {
public static void main(String[] args) {
if (args.length == 0) {
System.out
.println("Proper Usage is: java main number1 number2 number3 ...");
System.exit(0);
}