2913: 整数去重(超简单) 摘要:解题思路:列表注意事项:给个五星好评吧!参考代码:n=int(input())#输入na=[]#新建空列表x=list(map(int,input().split()))#输入列表for i in r…… 题解列表 2024年03月24日 0 点赞 0 评论 380 浏览 评分:9.7
2913: 整数去重(C语言) 摘要: #include int main() { int n; scanf("%d", &n); int a[n]; for (int i = 0; i < n; …… 题解列表 2023年07月27日 0 点赞 0 评论 407 浏览 评分:7.3
2913: 整数去重 摘要:```cpp #include using namespace std; int main() { int n,a[20001],j=1; cin>>n; for(int i=1;…… 题解列表 2023年01月05日 0 点赞 3 评论 408 浏览 评分:7.3
整数去重(C++)简单又实用 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <unordered_set>#include <vector>using namespace std;int m…… 题解列表 2023年07月19日 0 点赞 0 评论 704 浏览 评分:7.3
2913整数去重 摘要:解题思路:注意事项:参考代码:public class 整数去重 { public static void main(String [] args){ Scanner sc=new…… 题解列表 2023年06月05日 0 点赞 0 评论 298 浏览 评分:0.0
2913: 整数去重 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=20010;int a[N];int main() { …… 题解列表 2023年12月29日 0 点赞 0 评论 264 浏览 评分:0.0
编写题解 2913: 整数去重 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2913: 整数去重 import java.util.Scanner; public class t_2913 { …… 题解列表 2024年02月01日 0 点赞 0 评论 238 浏览 评分:0.0
整数去重C小白解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,j,is; scanf("%d",&n); int a[n+1],i; fo…… 题解列表 2024年02月26日 0 点赞 0 评论 336 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[20000],i,j; scanf("%d", &n); for (i = 0…… 题解列表 2023年06月10日 0 点赞 0 评论 202 浏览 评分:0.0
整数去重(两种方法) 摘要:第一种是直接去掉重复元素(跟之前去掉空格那个思路一样): 参考代码: ```c #include int main() { int n; scanf("%d",&n); int …… 题解列表 2023年10月28日 0 点赞 0 评论 374 浏览 评分:0.0