解题思路:
单调栈 class Solution {public int[] dailyTemperatures(int[] temperatures) {int length temperatures.length;int[] ans new int[length];Deque<Integer> stack new LinkedList<>();for (int i 0; i < length; i) {int temperatu…
提示 (AIDL File)Requires setting the buildFeatures.aidl to true in the build file) 解决方式:
在app的build.gradl中 adnroid{} 添加: buildFeatures{aidl true}