Geeksforgeeks: Wave Array
Problem: https://www.geeksforgeeks.org/problems/wave-array-1587115621/1
from typing import List
class Solution:
def _swap(self, arr: List[int], index: int)->None:
"""
I just swap two elements.
In Place manipulation, no ret...
is-power-of-two.hashnode.dev2 min read