题目链接
我的题解
两层for循环
class Solution {public int[] nextGreaterElements(int[] nums) {int[] res new int[nums.length];Arrays.fill(res, -1);for(int i 0; i < nums.length; i){for(int j i 1; j < i nums.length; j){if(nums[i] < nums[j % nu…
本方案采用的是媒体查询的方法来实现的 css媒体查询书写(可按照自己需求新增)不同尺寸下显示不同的文字大小图片大小等:
// 4K 带鱼屏
media screen and (max-width: 3840px) and (max-height: 1080px) {}
// 4K
media screen and (max-widt…