#include using namespace std; int main(){ int n; cin >> n; vector a(n); for(int a_i = 0; a_i < n; a_i++){ cin >> a[a_i]; } // your code goes here std::sort(a.begin(),a.end()); long min=abs(a[0]-a[1]); for(long i=0;i