Skip to content

Instantly share code, notes, and snippets.

@jashatton
Created November 6, 2014 15:29
Show Gist options
  • Save jashatton/926dcd87ac5818b5f38b to your computer and use it in GitHub Desktop.
Save jashatton/926dcd87ac5818b5f38b to your computer and use it in GitHub Desktop.
Interview question template for sorting values from an array
import java.util.Arrays;
import java.util.List;
public class SortSomeValues {
public static void main(String[] args) {
int[] values = {75, 100, 30, 50, 2, 144, 303, 0, 402, 0.0, 83};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment