Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilpropheta/fdcf485f9726d8356f91269a595af9db to your computer and use it in GitHub Desktop.
Save ilpropheta/fdcf485f9726d8356f91269a595af9db to your computer and use it in GitHub Desktop.
auto minDiff = inner_product(next(v.begin()), v.end(), v.begin(), numeric_limits<int>::max(),
[](auto... a){ return min(a...); }, // "sum"
minus<>{}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment