Understanding the Big O Notation
What is Big O Notation? If you’ve taken courses related to algorithms, you’ve heard of the term Big O notation, in a nutshell, Big O is a way of classifying how scalable your function or algorithm is, how your code will perform if the number of values input increase? Constant? Linear? Exponential? Big O notation is an important topic and its universal importance stems from the fact that it describes the efficiency of code written in any programming language....