malavibolg.hashnode.devUnderstand the recursion without stackFor get about the recursion for some time. Just we recall how the basic function works. def fun(): return 'Malavi Pande' output = fun() print(output) output : Malavi Pande most of the people say to moving forward with recursion one need to und...Aug 21, 2024路4 min read
malavibolg.hashnode.devLinked List creation In "Python"We can create linked list easily in 2 possible ways Using direct object linking Using insert method Direct object linking Linkedlist node is the combination of value as well as next node address class LinkedList: def __init__(self, value): ...May 8, 2024路2 min read
malavibolg.hashnode.devJust "Hoist"Hoisting is one of the well none as well as one of the jargon words in JS. But It's not because of the way it was just because the how deeply your trying to understand it. Before writing this I do have the same perception about hoisting. So, to make ...Jan 17, 2024路2 min read
malavibolg.hashnode.devMy Contribution with zero knowledgeHello, my dear knowledge seeks, This side Malavi Pande I am here to share my CircuitrVerse contribution experience as well as some of the best practices I came across while contributing. Without any further due let's go! Fear at first sight馃槀 So, th...Jan 5, 2024路4 min read
devsintech.hashnode.devThe "Cloud" in a NUT-SHELLHey folks, AI, IoT, Blockchain, and analytic technologies primarily work with massive amounts of data we couldn't even imagine in addition to that need huge storage space & computational power. Have you ever wondered where this much amount of data go...Oct 23, 2023路2 min read