Time Complexity

What do we mean by the term time complexity. I am not getting this. Please help .Either you tell me send me some link from where i can understand about time complexity

@Ritesh_jindal time complexity is the time taken by the program to run.
like if you used 1 loop of i=0 to n then loop run n times therefore complexity o(n)
if you used nested loop one inside another then for each i it runs n times so o(n*n)
in the course then is a whole section of time and space complexity you can refer that


dont forget to hit like and mark resolved if cleared :smiley: