This is the best explanation I had so far out of all python tutorial out there. Why did it not receive much views?!
@sinandmoral65625 ай бұрын
algorithm
@dairoleslieann9921 Жыл бұрын
Very clear and understandable
@TFB06088 ай бұрын
This was so concise and to the point, thank you!
@krishnagaming340810 ай бұрын
Your teaching skills is very amazing
@TechyNert Жыл бұрын
Your Teaching Method Is Amazing:)😍
@TaellaTa9 ай бұрын
So articulate, Thank you!
@venugopal37586 ай бұрын
No one can beat Neso academy
@HosamAlhabshi-xo7zi10 ай бұрын
thank you that was detailed and easy to understand
@letsexploreourselves40023 ай бұрын
Amazing Explanation .Thanks a lot sir 🙏
@techtalk60699 ай бұрын
very very nice explanation , thanks a lot....
@Oof-bp4wb7 ай бұрын
in 7:50 we can also use while for that isn’t? n = int(input()) start = 0 while start
@farragoprismproductions33376 ай бұрын
Makes sense to me, and I'm a beginner.
@farragoprismproductions33376 ай бұрын
Also, it's very dynamic. I appreciate how you use input statements to allow users to create their own, desired limit for how long *start* can be less than *n* . This means that they can make the code print values all the way up to the *nth* value, as long as *start* is less than *n* . *start* may be 0, but you incremented it by 1 (start + 1), which means that once the original integer for the variable *start* is printed, _1_ integer must be added to *start* until it is not longer less than *n* ; otherwise, until it is greater then *n* . Great work! If you instead put "while start
@burningshub89547 ай бұрын
so beautiful so elegant just teaching like a wow❤❤❤
@shivamchakrawarti8262 Жыл бұрын
Very helpful lecture sir
@ayub36511 ай бұрын
awesome...Thanks a lot, Subscribed.
@hxxrixh2 күн бұрын
thanks bro very useful
@jeedhy6 ай бұрын
Thank you very much, you are the best!
@BUISNESSWISDOM11 ай бұрын
Thank you sir!
@idowuibitayobright31178 ай бұрын
Exceptional!
@bacteria433111 ай бұрын
Thank you so much!!
@tejaswiphadatare1489Ай бұрын
Thank you 😊
@tnsobur17834 ай бұрын
Thanks brother!
@invincible6230 Жыл бұрын
Sorry for the question of the different topic than this but #include int main() { int i = 5; while (i-- >= 0) { printf("%d ", i); } return 0; } why does -1 prints in output?
@vnsshorts7119 Жыл бұрын
i think you want to say thai in the last run you are getting -1. . it is because you are using i--.. which mean first i will be compared with 0 and then i will be decremented. so in last run when i is 0 condition return true and i become -1due to i - - and hence it gives -1 solution: use - - i instead of i--
@invincible6230 Жыл бұрын
@@vnsshorts7119 Thank you for your explaination
@ՏԵվՏíղցհ Жыл бұрын
Awesome 👍
@NOno-i9e Жыл бұрын
please upload the playlist about Queues in DS, please!
@DanielleCohn-t4s5 ай бұрын
# very valuable
@anushka136 Жыл бұрын
Can you upload for loop because I can understand very well by seeing your video
@bharathilakshmi-t7b6 ай бұрын
Hi sir,can u explain y stop value shud be stop-1 y its built like that