mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 03:27:07 +00:00
Time: 1 ms (35.22%), Space: 12.5 MB (53.48%) - LeetHub
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
class Solution(object):
|
||||
def minOperations(self, nums, k):
|
||||
"""
|
||||
:type nums: List[int]
|
||||
:type k: int
|
||||
:rtype: int
|
||||
"""
|
||||
count = 0
|
||||
for n in nums:
|
||||
if n < k:
|
||||
count += 1
|
||||
|
||||
return count
|
||||
Reference in New Issue
Block a user