Guys, no better way to put this, I'm having an exam in about an hour and I want to be certain I have this thing figured out.
Quick responses would be appreciated :)
Thank you!
Guys, no better way to put this, I'm having an exam in about an hour and I want to be certain I have this thing figured out.
Quick responses would be appreciated :)
Thank you!
For further actions, you may consider blocking this person and/or reporting abuse
Meesmsik -
Mercy -
Bleuio tech -
Cong Li -
Top comments (1)
I wrote an article about this in fact: dev.to
Basicly assuming you slice time in slices of fixed (!) width, how many slices do you need depending on the size of input (n).
O(1) means that no matter how big the input is, you only need a fixed amount of time. O(n) means you need as many slices as there are inputs (so bigger inputs mean longer run time) and so on.