AnnBy studying fossil records, scientists recognized that many animal phyla started appearing into…Why did many species suddenly appear?Apr 29, 2021Apr 29, 2021
AnnMerge SortToday, I will describe a new sorting algorithm: Merge Sort, a divide-and-conquer algorithm invented by John von Neumann in 1945. The…Jan 16, 2021Jan 16, 2021
AnnThe “Strength” of Shell SortHi guys! In this blog, I’m going to explain to you about the “Power” of Shell Sort. Enjoy!Jan 2, 2021Jan 2, 2021
AnnInsertion SortToday, I’m going to be introducing you to a sort algorithm called, Insertion Sort…Jan 2, 2021Jan 2, 2021
AnnList Comprehension in PythonPython is known for allowing you to write code that’s simple, easy to write, and almost as easy to read as plain English. One of Python’s…Nov 5, 20201Nov 5, 20201
AnnZip function in PythonLast time, I showed you how to iterate through one list. But sometimes, you will have to iterate through more than one list. For example…Nov 3, 20201Nov 3, 20201
AnnHow To Tell if a Number is Prime or Not in Python Using For LoopsI’ve only used while loops to tell if a number is prime or not but for today, I’m going to show you how you can use for loops to tell if a…Nov 1, 20202Nov 1, 20202
AnnHow To Tell if a Number is Prime or not in python (The Faster Version)In my last blog, I showed you the slower version of how to tell if a number is prime or not. Last time, I promised you that I’d show you…Nov 1, 2020Nov 1, 2020
AnnPrime NumbersA prime number is a number greater than 1 that is not a product of two smaller natural numbers. For example, 3 is prime because the only…Oct 30, 20201Oct 30, 20201