Пікірлер
@vamsimeghana8260
@vamsimeghana8260 13 күн бұрын
Can we just search the key in the alist dictionary key and return True or False accordingly instead of doing the search again in visited
@LV-cn9bx
@LV-cn9bx 20 күн бұрын
There some errors in this video. First a Binary Tree is not Binary Search Tree. For some reason the teacher has confused both. Code seems confusing at times.
@sandriaelrod-iqbal5315
@sandriaelrod-iqbal5315 25 күн бұрын
Thank you, Kindson!
@kirmada22
@kirmada22 28 күн бұрын
Thank youu !!🙂
@MuhammedTalhaSakaoglu
@MuhammedTalhaSakaoglu Ай бұрын
i will wait for more videos :) pleese dont stop
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
This is very motivating. Many thanks 😊
@Gabrieliam
@Gabrieliam Ай бұрын
Interesting tutorials, all of them! If you care for any constructive feedback the sound needs improving, it's hard to focus on the tutorial because the low frequencies are very high and there's echoing or double voice going on.
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
Thanks for the tips! I got a new mic now 😊
@Gabrieliam
@Gabrieliam Ай бұрын
@@KindsonTheGenius Great, I think I'll watch and learn from all your tutorials in time. As for the mic, it might be that audio settings or audio post processing matter more, your microphone looks like it's decent quality. For example if you record in a large, or mostly empty room it might need some echo reduction.
@Noirie99
@Noirie99 Ай бұрын
Very good course, thanks Sir!
@kindsonmusic
@kindsonmusic Ай бұрын
Many thanks 🙏 Remember to subscribe for more like this 😊
@aspoonfulofknowledge
@aspoonfulofknowledge Ай бұрын
Great to see you back making videos !
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
Many thanks! Sure I"m back now😊😊
@Pardhu-g5g
@Pardhu-g5g Ай бұрын
thank you very much sir i got conformation form our subscribers thank you very much sir
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
Most welcome!
@Pardhu-g5g
@Pardhu-g5g Ай бұрын
nice explanation
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
Thanks and welcome
@pgkgaming4229
@pgkgaming4229 Ай бұрын
Nice explanation ❤
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
Thank you 🙂
@pgkgaming4229
@pgkgaming4229 Ай бұрын
Nice explanation ❤❤❤
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
Glad it was helpful!
@jevertt
@jevertt Ай бұрын
wouldn't using "np.matmul" or "@" be more clear for what you are trying to teach?
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
Yes, but it's quite tricky remembering all the functions needed for each operation
@MayureshSatao-t6k
@MayureshSatao-t6k 2 ай бұрын
I was solving leetcode basic tree questions, the preorder question passed all tests in one go! but when I tried postorder it didn't -> The correct order is left, right, root
@GiftEdeh-nk2gi
@GiftEdeh-nk2gi 2 ай бұрын
🥰
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
🙏
@ETR12935
@ETR12935 2 ай бұрын
amazing playlist!
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
Glad you like it!
@alemtsehaygebremariam9128
@alemtsehaygebremariam9128 2 ай бұрын
Thank you so much your codes are very clear and helped me a lot
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
Glad to hear that
@ojasikesari7200
@ojasikesari7200 2 ай бұрын
Really intuitive videos, must say. Just a small correction needed for PostTraversal order: it is LEFT-> RIGHT-> ROOT instead of ROOT-> RIGHT-> LEFT. Cheers!
@namalwairene3788
@namalwairene3788 3 ай бұрын
Am lost on how you got p2 and p3 in the table
@namalwairene3788
@namalwairene3788 3 ай бұрын
Where did u get the values in the table. were they given in the question?
@MikołajMuras-l6s
@MikołajMuras-l6s 3 ай бұрын
here is the code: class Node: def __init__(self, data): self.left = None self.right = None self.data = data def insert(self, data): if self.data is None: self.left = Node(data) else: self.left.insert(data) if data < self.data: if self.left in None: self.left = Node(data) else: self.left.insert(data) elif data > self.data: if self.right in None: self.right = Node(data) else: self.right.insert(data) if __name__ == "__main__": root = None("g") root.insert("c") root.insert("b") root.insert("a") root.insert("e") root.insert("g") root.insert("f") root.insert("i") root.insert("h") root.insert("j") root.insert("k")
@lusandadev
@lusandadev 3 ай бұрын
Thanks bro
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
Welcome
@ABUUCLIFFORD
@ABUUCLIFFORD 3 ай бұрын
god bless you sir
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
Many thanks.
@domillima
@domillima 3 ай бұрын
Why did you use 128 neurons in your first dense layer ??
@OsimenEseigbe
@OsimenEseigbe 3 ай бұрын
VERY GOOD EXPLANATION
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
Glad you think so!
@LEOWILLIAMG21CS
@LEOWILLIAMG21CS 3 ай бұрын
Why are you dividing by 255
@JustaBean437
@JustaBean437 3 ай бұрын
Hi, sorry to comment 3 years after the video, but this seems like the method you explained doesn't actually get you the shortest path because it doesn't look ahead at future costs/distances. In your example: You said A C B D A is the shortest path, with a total of 14 (1+1+5+7) But there's another path, A C D B A that has a total of 11 (1+2+5+3) because it avoids the highest cost/distance path. This simplified solution is a bit misleading.
@sahithvamsi8591
@sahithvamsi8591 4 ай бұрын
not clear
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
I think the best way to get it to sink in is to follow the video along with a notebook. Let me know if this helps
@OmaretsoguwaAtsagbede
@OmaretsoguwaAtsagbede 4 ай бұрын
very helpful, thanks!
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
Glad it was helpful!
@AvitBrianMugisha
@AvitBrianMugisha 4 ай бұрын
28 x 28 is not 255....
@simracingexe
@simracingexe 4 ай бұрын
Sir, would you please mind lowering the background audio its kinda hard to concentrate .Thankyou
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
Sorry, that's true. I have fixed the background noise in a different video.
@KevinGarcia-ws1kt
@KevinGarcia-ws1kt 5 ай бұрын
Thank you very much for your video it has really helped me understand DFS, especially with how it is supposed to work with the stack.
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
Glad it was helpful!
@lindsey4227
@lindsey4227 5 ай бұрын
Ive been on a wild goose chase trying to figure out how to write the equation, this was such a simple and helpful explanation. Keep up the good work!
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
You're very welcome!
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
Glad I could help!
@sashutosh775
@sashutosh775 5 ай бұрын
how to do same for string columns ?
@JoshuaAjansonSule
@JoshuaAjansonSule 5 ай бұрын
thanks for making this topic clearer.
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
Glad it was helpful!
@corriestan1
@corriestan1 5 ай бұрын
Simple & easy to understand. Thank you!!
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
Many thanks!!
@asratmamo7963
@asratmamo7963 6 ай бұрын
????
@mudassirahmedi5617
@mudassirahmedi5617 6 ай бұрын
While splitting the dataset you did not mention the proportion in which the data is split in the code , how did the software recognize the split ration ?
@HomeRunRealEstate-xi3rm
@HomeRunRealEstate-xi3rm 6 ай бұрын
Im using visual studio to build, but tensorflow as tf doesn't exist.
@astonmartinman
@astonmartinman 6 ай бұрын
This is so simple I'm kinda mad I never thought to do it this way on my own. Thank you for sharing!!!
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
No problem 😊
@sheetalkhatri8106
@sheetalkhatri8106 7 ай бұрын
Well explained, thank you :)
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
You're welcome!
@javeedkhanjk8008
@javeedkhanjk8008 7 ай бұрын
Amazing thank you sir ji ❤
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
Most welcome
@anikettikariha8066
@anikettikariha8066 7 ай бұрын
@2:50 C
@arnavhemdan9314
@arnavhemdan9314 7 ай бұрын
best explaination
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
Many thanks. You're welcome to subscribe to my channel🙏
@ayorindefolorunso8923
@ayorindefolorunso8923 7 ай бұрын
it was actually 98%. Good job
@SkyTheGuy8
@SkyTheGuy8 7 ай бұрын
my left year felt very informed but my right ear is bored and confused
@KindsonTheGenius
@KindsonTheGenius 2 ай бұрын
Sorry, I did not get the mic settings right 🙇🙇🙇
@MichealIdedia
@MichealIdedia 7 ай бұрын
Thank you so much for all this videos... made my life easy
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
Glad you like them!
@Лена-в1н6ы
@Лена-в1н6ы 7 ай бұрын
Thank you! Your videos were very helpfool. I understand better now.
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
Great to hear!
@ArthurSchoppenweghauer
@ArthurSchoppenweghauer 8 ай бұрын
Lmao, this isn't advice on how to make programming interesting. It's advice on how to spend your free time NOT programming. I thought it was gonna be something like "pick an intersting side project to work on", but no. Thank you Genius, I certainly wouldn't have been able to figure this one out by myself.
@yhoff76
@yhoff76 8 ай бұрын
Awesome series and thanks so much sir!! Much appreciation from Baton Rouge, Louisiana, US
@KindsonTheGenius
@KindsonTheGenius Ай бұрын
Glad you like them!