We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c32dc8 commit 89c70e1Copy full SHA for 89c70e1
helper.py
@@ -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]
+nums = [-2,-1,-1,1,2,3]
+
3
+max(len([i for i in nums if i > 0]), len([i for i in nums if i < 0]))
0 commit comments