Time and Space complexity of the max disk space

前端 未结 0 1880
名媛妹妹
名媛妹妹 2021-02-07 00:56
from collections import deque
def findMax(hardDiskSpace, k):
    n = len(hardDiskSpace)
    if n * k == 0:
        return []
    if k > n:
        return []

    deq          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题