首页 > 牛客S2第一题~
头像
spln
编辑于 2020-11-18 10:33
+ 关注

牛客S2第一题~

class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
* 求最小差值
* @param a int整型vector 数组a
* @return
int整型
*/
int minDifference(vector<int>& a) {
// write code here
long long res=0x3f3f3f3f3f3f;
sort(a.begin(),a.end());
for(int i=1;i<a.size();i++){
res=min(res,(long long)a[i]-a[i-1]);
}
return res;
}
};
抽奖中

全部评论

(0) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

近期精华帖

热门推荐