2 Ways to Reverse a Linked List in C++ JAVA and Python

Coding Interview Questions

Are you preparing for software coding interviews? Then how to Reverse a Linked List is the most common question asked by top software companies. And today I will be showing you three ways how you can reverse a Linked List in C++, JAVA, and Python. It’s fairly easy once you know the algorithm behind it. … Read more

Number of Islands Solution InterviewBit LeetCode

Coding Interview Questions

Number of Islands is a classic interview question asked in most of the interview questions. It’s a very frequent interview question that can test your knowledge of Depth First Search and Breadth-First Search. Question: Number Of Islands Given an m x n 2D binary grid grid which represents a map of ‘1’s (land) and ‘0’s (water), return the number of islands. An island is … Read more

Validate Binary Search Tree Solution

Coding Interview Questions

Validate Binary Search Tree is asked a lot in interview questions now a day. So, Today we will be discussing the algorithm and solution in Python, C++, and JAVA for this question. Question: Validate Binary Search Tree Given the root of a binary tree, determine if it is a valid binary search tree (BST). A valid BST is defined as … Read more

Design Pastebin or Bit.ly – System Design Interview Question

Design Pastebin or Bit.ly - System Design Interview Question

System design interview questions are largely asked questions nowadays and most of the time software engineers struggle to answer such questions. Today we are discussing Design Pastebin or Bit.ly services to understand their software design structure. Bit.ly is a URL shortening service, so in layman’s terms, all it does is when an URL is provided … Read more

Two Sum Coding Interview Question – Solved

Coding Interview Questions

Two sum is one of the popular coding interview questions asked in many software engineering interviews. You can find this question on popular coding websites such as Hackerrank, LeetCode, and Interviewbit. Today we will be discussing the possible solution and algorithm related to this question. So, let see or understand the questions first. Question – … Read more

Minimum Coin Change Problem Dynamic Programming

Coding Interview Questions

Minimum Coin Change Problem in Dynamic Programming is the most asked frequently questions asked in Software Coding Interview. Today we will be looking at the solution to this problem. Coin Change – LeetCode You are given an integer array of coins representing coins of different denominations and an integer amount representing a total amount of money. Return the fewest number of … Read more

Serialize and Deserialize BST Solution

Coding Interview Questions

Serialize and Deserialize BST is the top interview coding question asked in Amazon, Facebook, Google, and Netflix. Today we will be discussing the algorithm required to solve this question. So, First, let see the question first. Question: Serialization is converting a data structure or object into a sequence of bits so that it can be … Read more

Rotate Array Coding Interview Solution

Coding Interview Questions

Rotate Array is a very famous coding interview question asked in the interview. We will discuss the solution in Python, C++, and JavaScript which you can solve in LeetCode if you want. Rotate Array LeetCode and InterviewBit Question. Given an array, rotate the array to the right by n steps, where n is nonnegative. Example … Read more

How to Solve Fizz Buzz Interview Question in Right Way

Coding Interview Questions

Fizz Buzz is a very popular interview question that is asked a lot in software engineering interviews. So we will be looking into the solutions of Fizz Buzz using Python, C++. Fizz Buzz Problem Statement: Write a program that outputs the string representation of numbers from 1 to n. But for multiples of three, it … Read more

Max Points on a Line From Given Points

Coding Interview Questions

This is a very common interview question asked on Facebook, Google, Microsoft, etc. Let’s get into the question first and then we can see the solutions of the problem Max Points on a Line. Question: Given n number of points on a 2D plane, find the maximum number of points in that which will lie … Read more