题解 2098: 两数之和

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2098: 两数之和

摘要:```python n ,k = map(int,input().split()) ans =0 def twosum(numbers,target): global ans ……

两数之和-题解(C++代码)

摘要:解题思路:        没想到更好的,就暴力吧注意事项:        插一句,给了数据量n,new一个数组再delete不好吗......纠结什么参考代码:#include<bits/stdc++……