当前位置: 代码迷 >> 综合 >> AcWing 817. 数组去重
  详细解决方案

AcWing 817. 数组去重

热度:85   发布时间:2023-11-22 13:36:09.0

文章目录

  • AcWing 817. 数组去重
  • AC代码


AcWing 817. 数组去重

本题链接:AcWing 817. 数组去重

本博客给出本题截图
在这里插入图片描述

AC代码

代码

#include <iostream>using namespace std;int unique(int a[], int size)
{
    int cnt = 0;for (int i = 0; i < size; i ++ ){
    bool is_exist = false;for (int j = 0; j < i; j ++ )if (a[j] == a[i]){
    is_exist = true;break;}if (!is_exist) cnt ++ ;}return cnt;
}int main()
{
    int a[1000];int n;cin >> n;for (int i = 0; i < n; i ++ ) cin >> a[i];cout << unique(a, n) << endl;return 0;
}