Medium
Given an integer array nums of size n, return all elements that appear more than ⌊n/3⌋ times, sorted in ascending order.
nums
⌊n/3⌋
Input: nums = [3,2,3] Output: [3]
Input: nums = [1] Output: [1]
Input: nums = [1,2] Output: [1,2]