Leetcode/python/3065_minimum_operations_to_exceed_threshold_value_i.py

8 lines
209 B
Python
Raw Permalink Normal View History

2024-03-08 16:42:50 +00:00
class Solution:
def minOperations(self, nums: List[int], k: int) -> int:
heapify(nums)
operations = 0
while heappop(nums) < k:
operations += 1
2024-03-08 16:52:26 +00:00
return operations