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
Timeless DEV post...
The most used technology by developers is not Javascript.
It's not Python or HTML.
It hardly even gets mentioned in interviews or listed as a pre-requisite for jobs.
I'm talking about Git and version control of course.
Anton Korzunov -
Eugene Cheah -
aafrey -
Frederik 👨💻➡️🌐 Creemers -
Once suspended, jordanirabor will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, jordanirabor will be able to comment and publish posts again.
Once unpublished, all posts by jordanirabor will become hidden and only accessible to themselves.
If jordanirabor is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Jordan Irabor.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag jordanirabor:
Unflagging jordanirabor will restore default visibility to their posts.
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.