#include using namespace std; class Solution { public: vector topKFrequent(vector &nums, int k); bool test(vector &nums, int k, vector &answer); };