import java.util.ArrayList;

public class PS12Auto {

	public static void main(String[] args) {
		//feel free to use this method
		//for testing your other methods


	}

	//Litvin Ch. 9, #10
	public static int[] createWedge(int n) {
		//precondition:  n > 0

		//dummy return value
		return new int[1];	
	}

	//Litvin Ch. 11, #5
	public static ArrayList<String> reverse(ArrayList<String> list) {
		//Note:  original 'list' must remain unchanged!!


		//dummy return value
		return new ArrayList<String>();
	}

	//Litvin Ch. 11, #6
	public static void removeSmallest(ArrayList<Integer> list) {
		//modify original 'list'; no return necessary since this 
		//method receives a reference to an ArrayList<Integer> in 
		//memory, so we can alter it directly.


	}

	//Litvin Ch. 9, #14
	public static double positiveMax(double[][] m) {
		//precondition:  assume at least a 1x1 2D array

	
		//dummy return value
		return 1.0;
	}

}
