Find unique numbers in array

后端 未结 8 1137
被撕碎了的回忆
被撕碎了的回忆 2021-02-04 20:14

Well, I have to find how many different numbers are in an array.

For example if array is: 1 9 4 5 8 3 1 3 5

The output should be 6, because 1,9,4,5,8,3 are uniqu

8条回答
  •  鱼传尺愫
    2021-02-04 20:34

    How about this?

    #include 
    
    int main()
    {
        int a[] = {1, 9, 4, 5, 8, 3, 1, 3, 5};
    
        std::list la(a, a+9);
        la.sort();
        la.unique();
        std::cout << la.size() << std::endl;
    
        return 0;
    }
    

提交回复
热议问题