Skip to content

Instantly share code, notes, and snippets.

@growlnx
Created February 10, 2018 22:31
Show Gist options
  • Save growlnx/731c9add2b4040ee0564844ab0ab037c to your computer and use it in GitHub Desktop.
Save growlnx/731c9add2b4040ee0564844ab0ab037c to your computer and use it in GitHub Desktop.
#include "iostream"
#include "vector"
#include "algorithm"
using namespace std;
int main(void){
vector<double> fila = {1.8, 1.7, 1.6, 1.88, 1.9};
sort(fila.begin(), fila.end());
cout << fila.end() << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment