Please keep up the content, I am learning so much from these videos!
@LucidProgramming6 жыл бұрын
Will do BroMoe :). Thanks for your comment!
@mightyprogrammer28992 жыл бұрын
i've never seen this type of content with such a great explaination. Thanks a lot man you really deserve respect🙌 i know you've been working on some project during the past couple of months. which is good, best wishes to you but is there any chance that you'll gonna make Data Structure and Algorithm videos. please let us know
@LucidProgramming2 жыл бұрын
Thank you! As always, your comments are very encouraging! Thank you for watching and for the kind words on my content. I really hope I can start putting out videos again. Cheers!
@subhashchaudhary70036 жыл бұрын
I saved it offline to do it practically ... Explained very nicely
@LucidProgramming6 жыл бұрын
Excellent. Good way to practice, Subhash. Thanks for watching!
@shahzan5255 жыл бұрын
Sir we want more data structure videos.....like which are useful in programming interview.... Thanks your videos are amazing....
@LucidProgramming5 жыл бұрын
Thank you! If you like my content, I've been working on some projects during the past couple of months. If you would like to stay up-to-date, please consider subscribing to my mail list. Also, if you haven't already, please consider subscribing! I really appreciate the support. I hope that the content I provide there will enhance the videos on my KZbin page. bit.ly/lp_email
@louielogn61174 жыл бұрын
Another awsome series have been done ^-^ thanx for your efforts
@shonnoronha4 жыл бұрын
Done with your algorithms series , when are new videos coming can you please give an update ,eagerly waiting !
@shonnoronha4 жыл бұрын
Btw, really good series , crystal clear explanation, enjoyed a lot , thanks a lot! For these videos .
@LucidProgramming4 жыл бұрын
Time has been limited these days, so my ability to commit to that has been minimal at best. I do have a Patreon link that I prioritize content there for if you want to put in a request: www.patreon.com/lucidprogramming
@Sachin-tk3og5 жыл бұрын
crystal clear explanation ,thank you so much
@LucidProgramming5 жыл бұрын
Thank you! If you like my content, I've been working on some projects during the past couple of months. If you would like to stay up-to-date, please consider subscribing to my mail list. Also, if you haven't already, please consider subscribing! I really appreciate the support, and if you want to support the channel, I do have a PayPal link (www.paypal.me/VincentRusso1) for donations that go directly to the creation of content on this channel. I hope that the content I provide there will enhance the videos on my KZbin page. bit.ly/lp_email
@edgarjeparchin23824 жыл бұрын
Hi, first of all great content. Also, are you planning to expand algorithm topic going foward?
@LucidProgramming4 жыл бұрын
Thanks, Edgar. I am, but my time has been limited these days. I hope to when I get around to it!
@edgarjeparchin23824 жыл бұрын
@@LucidProgrammingcompletely understandable. Again one of the best programming related content on the youtube in my option. Keep it up. Thanks.
@LucidProgramming4 жыл бұрын
@@edgarjeparchin2382 Really appreciate that and it motivates me to keep going. Thanks again! :)
@shilpamurabatte56735 жыл бұрын
Thanks for the clear explanation
@LucidProgramming5 жыл бұрын
Thank you! If you like my content, I've been working on some projects during the past couple of months. If you would like to stay up-to-date, please consider subscribing to my mail list. Also, if you haven't already, please consider subscribing! I really appreciate the support, and if you want to support the channel, I do have a PayPal link (www.paypal.me/VincentRusso1) for donations that go directly to the creation of content on this channel. I hope that the content I provide there will enhance the videos on my KZbin page. bit.ly/lp_email
@polavarapuvinayrahul50494 жыл бұрын
Why did u stop uploading these are veryy helpful tutorials? Pls upload more content 🙏😇
@LucidProgramming4 жыл бұрын
Time and some personal things came up. However! I am going to start making more videos soon. I launched a Patreon page where viewers like yourself can suggest videos to make. In doing so you support the channel and get more content you love. Hope to make more videos soon :) www.patreon.com/lucidprogramming
@ahmedelmawrdy43812 жыл бұрын
hopping to have new algo playlist with a other content ( sliding window, .....)
@khaihoang74205 жыл бұрын
num="123" num=list(num) def strtoint(num,s): if s==len(num): return int(num[s-1]) else: num[s]=int(num[s]) strtoint(num,s+1) for m in range(len(num)): num[m]=str(num[m]) return int("".join(num)) print(strtoint(num,0)) Can i solve it using recursion(i made use of built-in functions in this code, sr about that)
@ahmedelmawrdy43812 жыл бұрын
thanks a lot
@LucidProgramming2 жыл бұрын
Cheers! If you enjoyed and benefited from my content, please consider liking the video and subscribing to the channel for more content like this. If you would like to support the content creation on this channel please consider unblocking ads when watching my videos as this is how I support my time to make content. I hope to be putting out more similar videos soon!
@zouhairtheadventurer34406 ай бұрын
Keep going
@VinCEbluerex5 жыл бұрын
this work in python 2.7?
@LucidProgramming5 жыл бұрын
Yes, have you tried running it?
@sierz.stradtord78835 жыл бұрын
I have just tested this, and it works perfectly fine on python 2.7
@LucidProgramming5 жыл бұрын
@@sierz.stradtord7883 Thanks for verifying!
@technologs88495 жыл бұрын
how to convert 'W1234' into int. number should be extracted.
@LucidProgramming5 жыл бұрын
What have you tried to solve this problem?
@technologs88495 жыл бұрын
@@LucidProgramming i did it thank you
@LucidProgramming5 жыл бұрын
@@technologs8849 Thanks! I appreciate the support!
@alexkhalamsky37155 жыл бұрын
Its unfair: we are still cheating .we do not use int built in function but so easily use 2 built in functions instead:ord and char! What do i offer? Break it down to the molecular level and create a dictionary of 10 first digits with corresponding number keys .thus you really break it d down.
@LucidProgramming5 жыл бұрын
The description says not to use the built-in "int" function. It doesn't say you cannot use "ord" or "char".