Skip to content

Commit

Permalink
Update recursionDriver.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
idebtor committed Mar 22, 2020
1 parent 6c298d9 commit 6e61199
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion psets/pset03/recursionDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ int triangle(int a);
int sumDigits(int n);
int count8(int n);
long long powerN(int base, int n);
void mergeSort(int *lsit, int N);

void mergeSort(int *list, int N);
int binary_search(int *list, int key, int size);

int main(int argc, char *argv[]) {
Expand Down

0 comments on commit 6e61199

Please sign in to comment.