/*** Note this file doesn't compile.
     Please save it as figureskating.java and then
	 complete the three methods. You will be graded on
	 how thorough your tests are. Also, you'll replace the
	 statements return 0 and return null in the two methods.
	 Those are just placeholders in this empty framework.
***/

import java.util.*;

public class figureskatingframework {
	
	public static void main(String[] args) {
	
		// Put tests here.
	
	}
	
	// Returns a judge's score for a routine where difficulties stores the
	// difficulties of each maneuver and scores stores the corresponding scores
	// the judge gave for each maneuver. Both arrays are guaranteed
	// to be the same size.
	public static double judgeScore(double[] difficulties, double[] scores) {
 
		// Fill in code.
		return 0;
	}
	
	// Returns the remaining scores in sorted order after dropping numLowDrop
	// lowest scores and numHighDrop highest scores from allScores. No change
	// should be made to the allScores array.
	public static double[] sanitizeScores(double[] allScores, int numLowDrop, int numHighDrop) {
 
		// Fill in code.
		return null;
	}
}