SDSandesh Daundkarinsandeshdaundkar.com·Mar 7, 2023 · 8 min readIt's about the Bash!Introduction A bash script is a file having instructions that can also be executed individually on a command line. With scripting, you can automate repetitive tasks. To create a bash script, you can start by creating a file in your favorite editor & ...00
SDSandesh Daundkarinsandeshdaundkar.com·Aug 13, 2022 · 2 min readSwitch Case in PythonIntroduction In python, there is no switch case, unlike other programming languages. So the question comes how do we write a switch case in python? Basically, there are two ways in which you can try to implement the switch case logic in python where...00
SDSandesh Daundkarinsandeshdaundkar.com·Aug 6, 2022 · 3 min readRecursionHello Everyone 🙋🏻♂️, In this article, we will take a look at recursion in python. The purpose of this article is not about analyzing the complexity or which approach is better (iterative or recursive). As many searches, sort, and traversal progra...00
SDSandesh Daundkarinsandeshdaundkar.com·Aug 6, 2022 · 2 min readBinary TreesHello Everyone 🙋🏻♂️, In this article, we will try to understand what are binary trees, as we go along we will be exploring different tree data structures so we must have a basic understanding of the binary tree. A binary tree is a tree comprising...00