Skip to main content

Questions tagged [time-complexity]

The amount of time resources (number of atomic operations or machine steps) required to solve a problem expressed in terms of input size. If your question concerns algorithm analysis, use the [runtime-analysis] tag instead. If your question concerns whether or not a computation will *ever* finish, use the [computability] tag instead. Time-complexity is perhaps the most important sub-topic of complexity theory.

3 votes
2 answers
128 views

I just solved the following Leetcode problem: All Paths From Source to Target Here is my solution: ...
Platus's user avatar
  • 127