日期: 2023 年 10 月 25 日

1 篇文章

thumbnail
数组
数组 1. LeetCode 896. 单调数列 题目地址:LeetCode /** * 一次遍历 * * @param nums * @return */ public boolean isMonotonic(int[] nums) { boolean inc = true, dec = true; int n = nums.length; fo…