Determine
the Big O complexity of the following function. Give mathematical explanation
of your answer.
void f(int vals[N]) {
  int numEven=0, numOdd=0;
  for(int i=0;i