From 77ffde450e92ffe6527c35ffc2383b17d4c04f68 Mon Sep 17 00:00:00 2001 From: braxtonhall Date: Sun, 23 Oct 2022 12:27:49 -0700 Subject: Rename directory to use GitHub ID --- entries/braxtonh/homework/fib.cpp | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 entries/braxtonh/homework/fib.cpp (limited to 'entries/braxtonh/homework/fib.cpp') diff --git a/entries/braxtonh/homework/fib.cpp b/entries/braxtonh/homework/fib.cpp deleted file mode 100644 index 900c9d0..0000000 --- a/entries/braxtonh/homework/fib.cpp +++ /dev/null @@ -1,32 +0,0 @@ -#include "fib.hpp" - -#include -#include -#include - -using namespace std; - -int Fibonacci::fib(const int n) const -{ - // cout << "start" << endl; - if (n < 0) { - // HOW?? - cout << "wtfff got ( " << n << " )" << endl; - // https://stackoverflow.com/questions/8480640/how-to-throw-a-c-exception - throw invalid_argument("received negative value"); - } else if (n == 0) { - // cout << "********************* LINE 12" << endl; - // https://stackoverflow.com/questions/1451170/in-the-fibonacci-sequence-is-fib0-0-or-1 - return 0; //1; ?????? - } else if (n == 1) { - // cout << "!!!!!!!!!!!!!!!!!!!!!!!!!!!!! LINE 15" << endl; - return 1; - } else { - // cout << "GOT TO LINE 19" << endl; - // cout << "got here" << endl; - // int retVal = fib(n - 1) + fib(n - 2); - return fib(n - 1) + fib(n - 2); - // // cout << "here" << endl; - // cout << "returning: (" << retVal << " )" << endl; - } -} -- cgit v1.2.3-70-g09d2