techncode.xyzFind the most recurring character in a string- via JavaScriptIntroduction This is the fourth post in the series DS & Also Practice - using examples & snippets. Problem Statement Given an input string, find the most recurring character. Ex - "aabbcccdddddd" -> here character d repeats 6 times, hence the most re...Nov 29, 2021·2 min read
techncode.xyzReverse an Integer - via JavaScriptIntroduction This is the 3rd post in the series DS and Algo Practice - using examples and snippets. We would leverage our previous string reversal techniques to reverse and return back an integer. Problem Statement Reverse an integer, preserve t...Nov 25, 2021·2 min read
techncode.xyzPalindrome Implementation - via JavaScriptIntroduction This is the 2nd post in the DS and Algo practice series. Here we would have a look at what is a palindrome and implement it via JavaScript. What is a Palindrome ? Well, palindrome is a string which when reversed generates the same s...Nov 25, 2021·2 min read
techncode.xyzReverse a String - using JavaScriptIntroduction The Data Structures and Algorithms Practice series starts with a very simple yet famous question, i.e. - Reverse a String. I would primarily be using JavaScript as a programming language for this series. Implementations via C#, Java wi...Nov 24, 2021·2 min read
techncode.xyzReact Js – Getting StartedWe are going to embark on the journey of the one and only React Js – the JavaScript library. We will be having multiple articles in the series and will understand what are the various moving components in React Js, how to be comfortable in creating a...Sep 2, 2021·7 min read