Big O notation

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.

    Posted 4 years ago
    • One for loop is better than two, and nested for loops are the devil. Binary search trees are king.

      Posted 4 years ago

      Other Comments

      • stay away from nested for loops

        Posted 24 days ago
        • 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.

          Posted 6 months ago
          • 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.

            Posted 6 months ago
            • I learned that It's important Algorthms and Data Structures as it makes your projects fast.

              Posted 6 months ago
              • 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.

                Posted 7 months ago
                • 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.

                  Posted 7 months ago
                  • I learned how critical to optimize your code especially when handling a large amount of data to reduce the runtime.

                    Posted 7 months ago
                    • I learned that knowing "why" something is coded that way is more important than knowing "how" to do it.

                      Posted 7 months ago
                      Delete comment?