给定一个长度为 的数组 ,请你编写一个函数:
int get_unique_count(int a[], int n); // 返回数组前n个数中的不同数的个数
第一行包含一个整数 。
第二行包含 个整数,表示数组 。
共一行,包含一个整数表示数组中不同数的个数。
5 1 1 2 4 5
4
允许使用 sort, 不允许使用 unique 去重函数!