Blog Algorithm Data Structure Infogain Interview Experiences 3 Questions from My Interview Experience at Infogain Quesstion1: Generating All Permutations of a String in Java. Problem Statement Given an input string, generate all possible permutations of...BY Neelabh May 21, 2024 0 Comment
Blog Data Structure Sorting an Array of 0s, 1s, and 2s Problem Statement Given an array of integers where each element is either 0, 1, or 2, sort the array in...BY Neelabh May 8, 2024 0 Comment
Blog Data Structure Minimum Number of Jumps: A Comparative Study of Recursive and... Problem Statement Given an array of integers where each element represents the maximum length of a jump that can be...BY Neelabh May 8, 2024 0 Comment
Blog Algorithm Data Structure Finding the Longest Palindromic Substring (LeetCode Problem) Introduction: In this blog post, we’ll explore a problem from LeetCode – finding the longest palindromic substring in a given...BY Neelabh April 30, 2024 0 Comment
Blog Data Structure Counting Contiguous Fragments with Given Arithmetic Mean – A Java... Computer Science Vectors by Vecteezy Arithmetic Mean problem was recently asked in a Core Java Professionals interview for Synechron Technologies...BY Neelabh April 22, 2024 0 Comment
Blog Algorithm Data Structure GoldmanSachs Conquering the GS Interview 💼: Transforming Fractions to Decimals and Cyclic... 🤔 The Challenge: Fractions to Decimals In the world of mathematics, fractions are a fundamental concept that represents the division...BY Neelabh April 15, 2024 1 Comment
Blog Data Structure Implementing Queue Using Stacks and Stack Using Queues 🔄 In this blog, we’ll explore how to implement a queue using two stacks and a stack using two queues. We’ll...BY Neelabh April 10, 2024 0 Comment
Blog Data Structure Understanding LRU Cache 🌈 LRU (Least Recently Used) cache is a caching strategy that evicts the least recently used items when the cache reaches...BY Neelabh April 10, 2024 0 Comment
Blog Data Structure 🐲 Finding the First Non-Repeating Character in a String with... In this blog post, we’ll explore a common problem in string manipulation: finding the first non-repeating character in a given...BY Neelabh April 10, 2024 0 Comment
Blog Algorithm Data Structure Heap Sort in Java: Sorting Data Efficiently Introduction Sorting is a classic problem in computer science, and heap sort is one of the most efficient algorithms to...BY Neelabh April 2, 2024 0 Comment