//暴力第一题 //学生队列距离问题 AC 100% public int[] DistanceToHigher(int[] height) { // write code here // [175, 173, 174, 163, 182, 177] //[0,1,2,1,0,1] int[] ans = new int[height.length]; //int maxIndex = ans[0]; for (int i = height.length - 1; i >= 0...