amanmandal.hashnode.devFLOWWEB: Bridging the Smart Contracts and Blockchain Enthusiasts GapA shining example of creativity has emerged in the fast-changing world of blockchain technology: FLOWWEB. FLOWWEB, a ground-breaking project developed at the Flow hackathon, aims to change how we think about and use decentralised smart contracts. At ...Aug 21, 2023·3 min read
amanmandal.hashnode.devWhat is Git and Github ? And why is it so important?Hey there, in this blog we are going to learn about Git and Github. As a developer, you might have come across the terms Git and Github but do you understand why you need these or why you are using these? Let's dig a little deeper in this topic. Gi...Mar 13, 2022·5 min read
amanmandal.hashnode.devWhat is an Array? And why it's so popular?What is an Array? An array is a collection of similar data types. For example, if we want to store the names of 50 people then we can create an array of string data type that can store 50 names. String[] names = new String[50]; Here, the above array ...Mar 6, 2022·4 min read
amanmandal.hashnode.devBinary SearchIntroduction Binary Search is a searching algorithm for finding the target element's position in a sorted array. It follows the Divide and Conquer approach in which the array is divided in two halves. Binary Search can be implemented only on sort...Feb 27, 2022·3 min read