We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 406a65a commit 1b8d3deCopy full SHA for 1b8d3de
Minimum Operations to Make Array Equal/Solution.py
@@ -0,0 +1,3 @@
1
+class Solution:
2
+ def minOperations(self, n: int) -> int:
3
+ return (n * n) // 4
0 commit comments