diff --git a/_100-days-of-code/2018-01-01-100-days-of-code-day008.markdown b/_100-days-of-code/2018-01-01-100-days-of-code-day008.markdown index f4f5b38..32900e6 100644 --- a/_100-days-of-code/2018-01-01-100-days-of-code-day008.markdown +++ b/_100-days-of-code/2018-01-01-100-days-of-code-day008.markdown @@ -1,6 +1,6 @@ --- layout: post -title: "day 7" +title: "day 8" date: 2018-01-09 categories: programming --- diff --git a/_100-days-of-code/2018-01-01-100-days-of-code-day009.markdown b/_100-days-of-code/2018-01-01-100-days-of-code-day009.markdown new file mode 100644 index 0000000..6ed7282 --- /dev/null +++ b/_100-days-of-code/2018-01-01-100-days-of-code-day009.markdown @@ -0,0 +1,14 @@ +--- +layout: post +title: "day 9" +date: 2018-01-10 +categories: programming +--- + +# 100 Days of Code + +### Day 9: +Going to be writing some more add-ons to nmap module. Also, added an example of +a bubble sort algorithm in python, and accompanied it with a wikipedia +description of the algorithm. I am going to be looking into implementing +another type of sorting algorithm today. diff --git a/_100-days-of-code/2018-01-01-100-days-of-code-day010.markdown b/_100-days-of-code/2018-01-01-100-days-of-code-day010.markdown new file mode 100644 index 0000000..de5f191 --- /dev/null +++ b/_100-days-of-code/2018-01-01-100-days-of-code-day010.markdown @@ -0,0 +1,19 @@ +--- +layout: post +title: "day 10" +date: 2018-01-11 +categories: programming +--- + +# 100 Days of Code + +### Day 10: +Made fibonacci programs from tutorials I found on youtube. One that introduces +the concept of memoization or storing results of recent function calls to +improve the speed of the recursive function. Also a basic bubblesort program in python +that I found from another tutorial. This is very basic stuff but I want to make sure I +know as much foundational knowledge as I can. Socrataca on youtube is a great +channel with lots of math and science themed videos. That is where I found +these tutorials. Here is a +[link](https://www.youtube.com/watch?v=Qk0zUZW-U_M&list=PLi01XoE8jYohWFPpC17Z-wWhPOSuh8Er-&index=18) +to the python video on the fibonacci sequence.