lokendra17.hashnode.devMaximal Square (Recursive and Iterative DP)Recursive To find the largest square, We'd go to the first "1" and ask it, "Hey, what's the largest square of 1s that begins with you?". To calculate that it needs to know the largest squares its adjacent cells can begin. So, it'll ask the same quest...May 28, 2021·2 min read
lokendra17.hashnode.devRecursion 101 - The IntuitionEvery Beginner is afraid of Recursion until one gets the knack of it. I hope after reading this series, Recursion will sound more helpful than confusing. What is Recursive function? A recursive function is defined as a function that calls itself to ...Jul 23, 2020·3 min read
lokendra17.hashnode.devLearning Java Series - Part 1Java is an Objected oriented and Platform-independent programming langugae, and is quite popular and used by giants in the Industry. You can kickstart learning about OOPs in Java. A Very friendly (better than C++) language with a great community beh...Jul 22, 2020·3 min read