Big O notation is Used to tell how long the code runs for large amount of data. The bigger the power of N , longer is the time taken to run and it become less efficient.
Upon learning Big O Notation, I understand now how algorithm scales with increasing input size. It is also important to consider the time complexity of the algorithm we create, as it can help us determine how efficient our code is.
It is worth learning about Big O notation because it allows you to measure the time complexity of algorithms and determine their efficiency. Learning about this will also help you make a fast and efficient code.
Making sure your algorithm is efficient is very important . Big o notation determines how long your algorithm will take to run based on how much data is thrown at it.
I learned that it is essential for every programmer to know Big O Notation. Having known this concept would give us an idea on what should be avoided and what are the best practices when we are doing our codes.
Top Comments
Big O notation is Used to tell how long the code runs for large amount of data. The bigger the power of N , longer is the time taken to run and it become less efficient.
One for loop is better than two, and nested for loops are the devil. Binary search trees are king.
Other Comments
stay away from nested for loops
Upon learning Big O Notation, I understand now how algorithm scales with increasing input size. It is also important to consider the time complexity of the algorithm we create, as it can help us determine how efficient our code is.
It is worth learning about Big O notation because it allows you to measure the time complexity of algorithms and determine their efficiency. Learning about this will also help you make a fast and efficient code.
I learned that It's important Algorthms and Data Structures as it makes your projects fast.
Making sure your algorithm is efficient is very important . Big o notation determines how long your algorithm will take to run based on how much data is thrown at it.
I learned that it is essential for every programmer to know Big O Notation. Having known this concept would give us an idea on what should be avoided and what are the best practices when we are doing our codes.
I learned how critical to optimize your code especially when handling a large amount of data to reduce the runtime.
I learned that knowing "why" something is coded that way is more important than knowing "how" to do it.