Skip to content

Commit

Permalink
Merge pull request the-hyp0cr1t3#5 from fraz-uddin07/master
Browse files Browse the repository at this point in the history
Update C++ Tips and Tricks.md
  • Loading branch information
the-hyp0cr1t3 authored Oct 13, 2021
2 parents 4b609ac + 880f8ee commit 5a06477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C++ Tips and Tricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ reverse(vect.begin(), vect.end());
```
Instead,
```c++
sort(vect.end(), vect.begin());
sort(vect.rbegin(), vect.rend());
```
#### Min-max of multiple elements
Expand Down

0 comments on commit 5a06477

Please sign in to comment.