程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Sword finger offer python:61 Maximum value of sliding window

編輯:Python

subject :

Given an array nums, There is a size of k The sliding window of the array moves from the leftmost side to the rightmost side of the array . You can only see... In the sliding window k A digital . The sliding window moves only one bit to the right at a time .

Returns the maximum value in the sliding window .

Code :

class Solution:
def func(self , nums,k):
res = []
lo , hi = 0 , k-1
while hi <= len(nums) -1:
curt = nums[lo:hi+1]
res.append(max(curt))
hi += 1
lo += 1
return res
a = [2,3,4,2,6,2,5,1]
k = 3
s = Solution()
print(s.func(a,k))

Output :

[4, 4, 6, 6, 6, 5]


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved