time-complexity

c#
āļø **Why Does Substring in .NET Take O(n) Time?** š¤ **Introduction** If you've ever worked with strings in .NET, you might have wondered why the `string.Substring()` method takes O(n) time, especially since strings are immutable. It seems logical that a

optimization
1 min read
How do I profile a Python script?
š How do I profile a Python script? š Are you tired of guessing which part of your Python script is causing the slowdown? Is your code taking forever to run and you don't know why? š¤ Don't worry, we've got you covered! In this blog post, we'll discuss