Majority Element
Try to solve the Majority Element problem.
We'll cover the following...
Statement
Given an array, nums
, having integers, return the majority element. An element will be considered a majority element if it occurs more than times in the array.
...