3254. 查找大小为K的子数组的力量 I
原文英文,约800词,阅读约需3分钟。发表于: 。3254. Find the Power of K-Size Subarrays I Difficulty: Medium Topics: Array, Sliding Window You are given an array of integers nums of length n and a positive integer k. The power of an array is...
给定一个整数数组和正整数k,求所有大小为k的子数组的“力量”。如果子数组元素连续且升序,返回最大元素;否则返回-1。使用滑动窗口方法检查每个子数组,最终返回结果数组。