1234
if(99 in ourArray) { //Do stuff }
if (std::find(std::begin(ourArray), std::end(ourArray), 99) != std::end(ourArray)) { // Do stuff }