Leetcode Weekly Contest 296
原本 contest 296 的時間是 6/5 12:30,但我人在家樂福直接沒辦法寫,拖著拖著就到今天了。
2293. Min Max Game
Difficulty: Easy
, Open in Leetcode
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 ofnums
. Ifn == 1
, end the process. Otherwise, create a new 0-indexed integer arraynewNums
of lengthn / 2
. - For every even index
i
where0 <= i < n / 2
, assign the value ofnewNums[i]
asmin(nums[2 * i], nums[2 * i + 1])
. - For every odd index
i
where0 <= i < n / 2
, assign the value ofnewNums[i]
asmax(nums[2 * i], nums[2 * i + 1])
. - Replace the array
nums
withnewNums
. - Repeat the entire process starting from step 1.
Return the last number that remains in nums
after applying the algorithm.
題目解釋
Solution
照著題目打就過了,這題老實說蠻神奇的,至於時間複雜度:我就暴力!
1 | class Solution: |