Skip to content

Instantly share code, notes, and snippets.

@arjunsk
Created August 17, 2018 19:30
Show Gist options
  • Save arjunsk/a4536c5eb04a0a7d3d993762b9536721 to your computer and use it in GitHub Desktop.
Save arjunsk/a4536c5eb04a0a7d3d993762b9536721 to your computer and use it in GitHub Desktop.
package algorithms;
import java.util.Arrays;
public class MediumSorter implements ISorter{
@Override
public int[] sort(int arr[]) {
// Implement merge sort or similar.
System.out.println("Medium sort used.");
//TODO : change to merge sort
//Arrays.sort(arr);
return arr;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment