Accept the parameters and calculate the Compound Interest & print it on STDOUT (Use Math class methods)
@dibeshranjandas42782 күн бұрын
Hello sir can this course is complete dsa using java and can it actually help me to master in dsa
@akhilak20844 күн бұрын
Hands down, the best explanation!
@harikrishnans20544 күн бұрын
You deserve a lot sir❤❤❤
@ajayshukla72384 күн бұрын
@itsdineshvaryani thanks for explaining. I am not seeing the xls file in description/comments section. Kindly share it again
@k-universe00225 күн бұрын
plz also grind some CP problems btw ur explanation is very good thanku
@gokula8137 күн бұрын
Day 1
@DeepCoderMK7 күн бұрын
Thank you
@jokeasy24k358 күн бұрын
Hi, thanks for the helpful video. There's just a small error at 8:43. When head is null, you are returning the new node directly without assigning it to the head. To solve it: if(head == null) { head = newNode; return head; }
@amitchaurasiya48768 күн бұрын
First find the product of all elements and second just devide the product by the index value and store the res in new result array 👍
@k-universe002213 күн бұрын
teach more about CP
@shubhamaryan678413 күн бұрын
Why am I not able to print Arrays with simply using Sysout? Why do I have to use Arrays.toString0 method to print the arrays? I am using Zulu 17.
@The_Coding_Cluster13 күн бұрын
thank you very much ❤
@ravipandey2917 күн бұрын
Great explanation in such a detailed manner. Thanks Sir for all your efforts.
@makov229920 күн бұрын
I always implemented LinkedLists after watching your tutorials <3 , and yesterday I just found out about import java.util.LinkedList; ;/ RIP ... still so usefull to know how to implement them yourself!
@basavarajrajur772022 күн бұрын
List<Integer > oddNumberList = Arrays.stream(arr) .boxed() . filter (n-> n%2!=0) .toList(); Time and space complexity is O(n)
@akashmahmud710222 күн бұрын
what if I solve this problem with this method int[] myArray ={645,567,56,345,234,4567,67,3254} ; int[] resultArray=new int[myArray.length]; for(int i=0; i < myArray.length; i++){ resultArray[(myArray.length-1)-i]= myArray[i]; }
@IrshadAlam-b4z27 күн бұрын
Thank you sir
@DeepCoderMK27 күн бұрын
Thank you
@DeepCoderMK27 күн бұрын
Thank you
@IrshadAlam-b4z27 күн бұрын
Sir eska notes nahi milega
@DeepCoderMK27 күн бұрын
Thank you
@DeepCoderMK27 күн бұрын
Thank you
@DeepCoderMK27 күн бұрын
Thank You
@HussainReza-ho5qhАй бұрын
This is linear search or binary?
@harikrishnans2054Ай бұрын
the best!!!!!!!!!!!!!!!!! the best !!!!!!!!!! !!!!!!!!!!!!! in the entire youtube for dsa.
@ravipandey29Ай бұрын
Thanks for such a great tutorial on DSA with detailed explanation.
@ShraddhaGawde-z1kАй бұрын
Can we buy an offline copy for this book?
@rachamallidorasrivignesh4499Ай бұрын
Excellent explantion in a short vedeo.Thanks for apploading.
@rachamallidorasrivignesh4499Ай бұрын
Excellent explanation bro❤
@Dr.V.KishenAjayKumarАй бұрын
why are you using this
@superiorfood322Ай бұрын
I hope you make a video about skip list
@muneebahmed1856Ай бұрын
sir i have question regarding vedio cant we use for each loop to print element of array please reply
@harikrishnans2054Ай бұрын
bro confusing! plz make easy video! another video of post order is for members only
@-NanthiniSАй бұрын
I easily understand sir 😊
@Hishammourad-u7qАй бұрын
thanks for woderful course Dinesh , could you please add advanced Algorithm to the playlist like:Dijkstra, Bellman ford, Floyd Warshall, Kruskal and Prim ,Greedy and Divde and Conquer Algorithms
@abhinavparmar9434Ай бұрын
You have risen through steps.
@perfectum-perfectyourself2762Ай бұрын
Will you also talk about hash tables and hash sets in this course?
@koti45Ай бұрын
Sir why are you not use tail , and why you use head node only
@ThnadamАй бұрын
You tried your best to explain, thank you
@Chilli_TeaАй бұрын
Couple of ways to implement this, I prefer this approach rather than tracking pointers: char[] chars = word.toCharArray(); StringBuilder sb = new StringBuilder(); for( i = chars.length-1; i>=0 ; i --){ sb.append(chars[i]); } return word.equals(sb.toString()); ofc can convert the string input to lowercase or something to cover capital letters. e.g: "Hannah"
@coolcoders5000Ай бұрын
Done: 30-09-2024
@appikeeru5785Ай бұрын
Hello but starting u told sum> target and decreasing right did anyone observed
@madhavideshmukh198Ай бұрын
Your channel is best.. with quality content ❤❤❤❤❤❤
@prakritilodhi7743Ай бұрын
Nice explanation 😊
@esmeraldavera7620Ай бұрын
I appreciate going through each step, it is a good way to really cement the concepts.
@wilsonreis3469Ай бұрын
Muito bom. Parabéns.
@esmeraldavera7620Ай бұрын
Watching in 2024, Thank you for making this series!
@ABDESSAMADALLAY-m3xАй бұрын
Hello Sir where I can find the slides of mockito and junit ? Thanks in advance