#include <stdbool.h>

/*Calculate and return the check symbol of isbn.
  isbn is an int array whose elements are each digits of the ISBN;
  tenDigits is a bool that is TRUE if an ISBN-10 is being passed and
  false if an ISBN-13 is being passed.*/
  
char checkSymbol (int isbn[], bool tenDigits) {
  // ...
}
