public class Runs
{
    /**
     * Returns true if and only if the length of each
     * run in arr is strictly longer than all previous runs
     */
    public static boolean runLengthIncreasing(int[] arr)
    {
        return false; // TODO implement
    }
}
