Пікірлер
@FrankJerry-en3no
@FrankJerry-en3no 5 сағат бұрын
Thank you CS JoJo My journey as a computer science student will have a good foundation.
@erickcortez1392
@erickcortez1392 6 сағат бұрын
When i click on jupyter notebook a web browser dosen't pop up. What did i do wrong? Please answer back. Thank you
@bramburn
@bramburn 8 сағат бұрын
9:09 i would use Django json script
@bramburn
@bramburn 8 сағат бұрын
Like you i chose to use a cdn vue to get things done without using node
@bramburn
@bramburn 8 сағат бұрын
1:12 back in the day that was rhe norm to refresh the whole page. We would use anchors to scroll back to the page. More page views = more ad impressions
@jisoonie
@jisoonie 16 сағат бұрын
Thanks
@gotitboom
@gotitboom Күн бұрын
as always, I love you
@TheHomeschoolgal
@TheHomeschoolgal Күн бұрын
I can't believe this is free on KZbin - thank you!!!
@Abzarad
@Abzarad Күн бұрын
9:22 ln 14, no print(), and no calling the function, but we got an output, how is that? is this a silly question? Second, argument and parameter are different, so correct this please. third: thank you for the simple yet very informative video
@jamesroberts4684
@jamesroberts4684 2 күн бұрын
I'm doing tutorial 1 and at the point where you input the but IN is missing
@ramenra8942
@ramenra8942 2 күн бұрын
My professor linked this video in the modules instead of teaching it LOL
@sakuntaladas2689
@sakuntaladas2689 3 күн бұрын
Hi I have a qn.Pls Reply..I have-1.5 myopia in both eyes and I'm now 19 ..if I take cse engineering will my myopia increase as they work for 10hr+ each day infront of laptop..PLS SOMEONE REPLY ..I HAVE SUPER SCARED BUT I HAVE A LOT OF INTEREST IN CSE
@Lorongxz
@Lorongxz 3 күн бұрын
Omg bro thank u so much
@udiepeterunimke692
@udiepeterunimke692 4 күн бұрын
This video was great
@venkataramanachakravarathu4223
@venkataramanachakravarathu4223 4 күн бұрын
This is the true explanation of Kadane's Algorithm. Liked a lot
@alexandertownsend5079
@alexandertownsend5079 4 күн бұрын
@CS Dojo Can you please pin a link to your intro to objects and classes video?
@zetsui0411
@zetsui0411 4 күн бұрын
3:50 7:58 No return on helper function you're pulling from the initial subset each iteration 8:05 you aren't printing one overall link. tldr for problem
@naguseethan3499
@naguseethan3499 4 күн бұрын
Who watching may 2024😢
@anonymous2150
@anonymous2150 5 күн бұрын
Whatever man if i was u i never left google. I always run the channel in second.
@KVSDIGITALPHOTOLABASABA-jb6mo
@KVSDIGITALPHOTOLABASABA-jb6mo 6 күн бұрын
am not clear with v1 and v2 explanation
@israelip
@israelip 7 күн бұрын
Thank you <3
@user-pd2pd1ho2h
@user-pd2pd1ho2h 7 күн бұрын
Thank gooloplex SEO Sandra Mitra ❤❤❤
@TheAlphaWolfMan
@TheAlphaWolfMan 8 күн бұрын
Thank you, thank you, thank you! Spent the last week trying to wrap my head around classes. This was a perfect tutorial to help me understand.
@Honest_Reply900
@Honest_Reply900 9 күн бұрын
Thank you for all the efforts to make it look very simple and practical
@TheGarthMonster
@TheGarthMonster 10 күн бұрын
Awesome explanation! Thank you so much for putting this together. Really a great job
@spyutility9721
@spyutility9721 10 күн бұрын
Hi Dojo, all the way from South Africa, this was very helpful . Thanks
@shok.2442
@shok.2442 10 күн бұрын
Me watching rn cause i have finals performance tomorrow 😂
@tomathan2465
@tomathan2465 10 күн бұрын
I love the way he says everything in normal speed. But the he says Jupyter Notebook in double speed
@habiburrahmanhemel7827
@habiburrahmanhemel7827 11 күн бұрын
DAVID'S BALL! 😭
@64aashishchaudhary5
@64aashishchaudhary5 12 күн бұрын
public class Main { public static int frogCrossRiver(int distance, int stones, int currentPosition) { // Base case: If the frog has reached the end of the river, return 0 if (currentPosition >= distance) { return 0; } // Recursive case: Try both options (skip and not skip) int skipStone = frogCrossRiver(distance, stones - 1, currentPosition + 2); int notSkipStone = frogCrossRiver(distance, stones, currentPosition + 1); // Return the minimum number of moves required return 1 + Math.min(skipStone, notSkipStone); } public static void main(String[] args) { int distance = 11; // Distance to cross the river int stones = 10; // Number of stones int currentPosition = 0; // Initial position of the frog int minMoves = frogCrossRiver(distance, stones, currentPosition); System.out.println("Minimum moves required: " + minMoves); } }
@nhloniphojula
@nhloniphojula 14 күн бұрын
For me i just used the reverse function, i don't know if am wrong or not myList = [7 , 5 , 4 , 4 , 3 , 1 , -2 , -3 , -5 , -7, -8] total = -1 reversedList = reversed(myList) for i in reversedList: total += i if i >= 0: break print(total)
@Gupatik
@Gupatik 14 күн бұрын
it is better nowadays to just use vscode with some extensions, it will save you a lot of headache
@afraimuangnory7195
@afraimuangnory7195 14 күн бұрын
You are the best for me , you have made me developed much interest in programming by making programming easier and understandable. Thank you so much .
@Finx001
@Finx001 15 күн бұрын
Comments.captialize()?cuz what if the user enters greet in lower case?
@abdallaahmed568
@abdallaahmed568 15 күн бұрын
Dude, you're just awesome
@user-hy8dn3ux4q
@user-hy8dn3ux4q 16 күн бұрын
Amazing video. I've just started out in Python Programming having had no prior experience and I can confidently say I understand time complexity well enough thanks to this video. Thank you SO MUCH for taking the time to create this content! :)
@user-pc2hv8bd9p
@user-pc2hv8bd9p 17 күн бұрын
Update this playlist 😢
@internet_18.0
@internet_18.0 17 күн бұрын
meowmeowmeowmeow
@berylgreen1973
@berylgreen1973 17 күн бұрын
Clearest videos on computer programming that I've ever watched. THANK YOU!
@mahdibentaleb381
@mahdibentaleb381 18 күн бұрын
Thank you for this simplified explanation
@Kazecreatie
@Kazecreatie 18 күн бұрын
I am trying to learn this as a 9 years old
@minhquantran8267
@minhquantran8267 19 күн бұрын
why the O(1) of the return statement doesnt get a constant c as well?
@johnmahugu
@johnmahugu 19 күн бұрын
all the top universities teach CS in python not sht java.
@johnmahugu
@johnmahugu 19 күн бұрын
why did you not do this in Python?
@johnmahugu
@johnmahugu 19 күн бұрын
You have no idea how happy i am to finally find this. thank you very much for the great work!!!
@gilberttubay4055
@gilberttubay4055 19 күн бұрын
please someone help me i alway have an error ( Robot() takes no arguments)
@MARIA-zd2mt
@MARIA-zd2mt 21 күн бұрын
Thank you so much you are a life saver!!
@osemudiamenbobbyosebor3034
@osemudiamenbobbyosebor3034 21 күн бұрын
Hi, im a beginner in python and i download python but it doesnt seem to open properly.. it shows just something like (Python 3.12.3 (tags/v3.12.3:f6650f9, Apr 9 2024, 14:05:25) [MSC v.1938 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information.)... . any help please?
@user-yu6yn6zs8n
@user-yu6yn6zs8n 22 күн бұрын
can we create websites using python ?? either front end or back end ?? which one we can do ?? using python ??
@nuratirah3086
@nuratirah3086 24 күн бұрын
why we need to add more attributes for multiple class such as robot owned