Easy
Given an array nums of size n, return the majority element (the one appearing more than n/2 times). It always exists.
nums
n/2
Input: nums = [3,2,3] Output: 3
Input: nums = [2,2,1,1,1,2,2] Output: 2