2913: 整数去重(C语言)
摘要: #include
int main() {
int n;
scanf("%d", &n);
int a[n];
for (int i = 0; i < n; ……
整数去重(两种方法)
摘要:第一种是直接去掉重复元素(跟之前去掉空格那个思路一样):
参考代码:
```c
#include
int main()
{
int n;
scanf("%d",&n);
int ……
————派大星的极致运算————————之整数去重复&m
摘要:解题思路://1号数组存放读入数据
//2号数组存放不重复数组
//通过循环遍历进行比较看是否有重复注意事项://无参考代码:#includeint main()
{
int n;
……
题解 2913: 整数去重 菜鸟解法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n; scanf("%d",&n); int a[n]; for(i=0……