#include "helper.h"

int MyCustomHelper::find(int array[], int size, int lookup_value) {
  for (int i = 0; i < size; i++) {
    // Compare each element in the array with the value we're searching.
    if (array[i] == lookup_value) {
      return i;
    }
  }
  return NOT_FOUND;  // to indicate we didn't find the value.
}
