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 5 years ago
    • One for loop is better than two, and nested for loops are the devil. Binary search trees are king.

      Posted 5 years ago

      Other Comments

      • I learn the importance of considering time complexity while coding.

        Posted 20 days ago
        • Big O notation illustrates how an algorithm's performance or runtime grows relative to the size of the input data.

          Posted 6 months ago
          • The video showed how different Big O notations affect performance as data scales, making algorithm efficiency much clearer.

            Posted 6 months ago
            • I learned that Big O notation measures an algorithm’s efficiency based on time and space as input size grows.

              Posted 6 months ago
              • I learned how critical it is to structure your code efficiently, especially when dealing with large data.

                Posted 6 months ago
                • Big O notation shows how an algorithm's performance changes as the amount of data increases.

                  Posted 6 months ago
                  • Importance of efficient efficient on algorithm, measured by its time complexity, is crucial when dealing large datasets, algorithms with high time complexities like O(n^2) or O(n^3) can become impractically slow as the dataset grows.

                    Posted 6 months ago
                    • This video made me understand better how Big O Notation works and how it justifies the runtime of programs.

                      Posted 6 months ago
                      Delete comment?