c 2b 2b if in equivalent

Solutions on MaxInterview for c 2b 2b if in equivalent by the best coders in the world

showing results for - "c 2b 2b if in equivalent"
Nisa
02 Feb 2016
1#include <algorithm>
2#include <vector>
3
4if ( std::find(vec.begin(), vec.end(), item) != vec.end() )
5   do_this();
6else
7   do_that();