#ifndef __UTIL_H__ #define __UTIL_H__ #include #include using namespace std; ostream & operator<<(ostream &, vector &); vector _play_game(vector & players, const int step); int _increment_to_next_looser(const vector & players, int start, const int step); int _test_run(int n, int m, bool verbose=false); #endif