Skip to content

Commit 89c70e1

Browse files
committed
p2529 (python one-liner)
1 parent 9c32dc8 commit 89c70e1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

helper.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
def pivotArray(self, nums: List[int], pivot: int) -> List[int]:
2-
return [i for i in nums if i < pivot] + [i for i in nums if i == pivot] + [i for i in nums if i > pivot]
1+
nums = [-2,-1,-1,1,2,3]
2+
3+
max(len([i for i in nums if i > 0]), len([i for i in nums if i < 0]))

0 commit comments

Comments
 (0)