Leetcode 2293. Min Max Game
Posted on Wed 08 June 2022 in Leetcode • Tagged with recursion, simulation
Question Link : https://leetcode.com/problems/min-max-game/
Difficulty: Easy
Question
You are given a 0-indexed integer array nums whose length is a power of 2. Apply the following algorithm on nums:
Let n be the length of nums. If n == 1, end the process. Otherwise, create a new 0-indexed integer …
Continue reading