package sorting;

public class BubbleSort {
	
	public static <AnyType extends Comparable<? super AnyType>> void bubbleSort(AnyType[] a) {
		// to be filled by student
		return;
	}
	
}
