Can someone show me what bubble-sorting an int[] of { 5, 4, 3, 2, 1 } looks like? I have to place it inside
public class SortIntArray {
// this method needs your code to be added to work
public static void sort(int[] list) {
with no calls to any other methods or classes. I've been working on an assignment for two days and haven't been able to make any progress.