Updated: 2024-03-12
1 min read

On This Page

class Solution:
    def flowerGame(self, n: int, m: int) -> int:
        return (n * m) // 2
Previous
Next