Skip to content

Instantly share code, notes, and snippets.

@ilpropheta
Last active February 17, 2016 18:10
Show Gist options
  • Save ilpropheta/366acfc4c483683d9bee to your computer and use it in GitHub Desktop.
Save ilpropheta/366acfc4c483683d9bee to your computer and use it in GitHub Desktop.
for (auto i=0; i<v.size()-1; ++i)
{
if (v[i+1] - v[i] == minDiff)
cout << v[i] << "," << v[i+1] << "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment