Tag: Time Complexity

Time Complexities (Part 2)

  • Nov 20, 2020
  • 97
  • 74

In the previous post, we have discussed the definitions of Computational Complexity, Big O Notation, and have been introduced to some common time complexities. We will discuss in details each of the c ...

Time Complexities (Part 1)

  • Nov 18, 2020
  • 96
  • 75

When we talk about Big O and scalability of code, we simply mean when we grow bigger and bigger with our input, how much does the algorithm or function slow down? In this post, we will understand more ...