CRChirag Ramachandrainblog.chiragr.com·Jan 16, 2022 · 3 min readGet Started With Web Development: 5 Easy StepsAfter speaking to many developers and aspirants, I realized that the first question that bothers most folks is, "how do I get started?" As someone who is mostly self-taught, I wish someone had given me this guidance when I started out. I'm breaking ...00
CRChirag Ramachandrainblog.chiragr.com·Jan 20, 2021 · 6 min readData Structure | Singly Linked ListsWhat is a Singly Linked List? A singly linked list is a linear data structure similar to an array. However, unlike arrays, elements are not stored in a particular memory location or index. Rather each element is a separate object that contains a poin...00
CRChirag Ramachandrainblog.chiragr.com·Jan 11, 2021 · 6 min readData Structure | IntroductionData Structures are a collection of values, the relationship between them and the functions or operations that can be applied to the data. What are the different data structures available? The most commonly used data structures are Singly Linked Li...00
CRChirag Ramachandrainblog.chiragr.com·Jan 10, 2021 · 1 min readProblem Solving | Reverse a stringGiven a string, return a new string with the reversed order of characters. Examples: reverse('apple') === 'leppa' reverse('hello') === 'olleh' reverse('Greetings!') === '!sgniteerG' Pseudo Solution: Convert the string to array Reverse the array usin...00
CRChirag Ramachandrainblog.chiragr.com·Jan 10, 2021 · 1 min readProblem Solving | Fizz Buzz ProblemQuestion: Write a program that prints the numbers from 1 to n. But for multiples of three, print "Fizz" instead of the number, and for the multiples of five, print "Buzz". For numbers which are multiples of both three and five, print "FizzBuzz" Opti...00