Top Posts in Java
Top Posts in Python
Top Posts in Interview Questions
Latest Posts

Conditional Filtering Using Pandas In Python
Pandas need no introduction. Being a robust library for data manipulation and analysis, it is a lifeline for many data scientists and analysts. When you are working with data, you need to filter out certain values….

Maximum Sum Subarray In A Sorted 2D Matrix
In this article, we will learn to solve the maximum sum subarray in a sorted 2D matrix problem using C++. This is one of the musts to do problems before appearing for an interview. Top-tier….

Rotate Images Using C++ [Easy Implementation]
In this article, we will learn to rotate images by 90 degrees using C++. Top recruiters have asked about this problem many times during tech interviews. Not only this, but this particular problem also has….

Spirally Reading Through 2D Matrices in C++ [Easy Guide]
In this article, we will implement a spiral print of 2D matrices. This particular problem has already been asked about in interviews many times. To solve this problem, one must visualize what’s going on with….

Remove Consecutive Duplicates From A String in C++
In this article, we will learn to remove consecutive duplicates from a string using C++. This type of problem is very common for technical interviews or screening rounds. Today we will approach this problem using….

Staircase Search On Sorted 2D Matrices in C++
In this article, we will go through the underlying algorithm behind staircase search on sorted 2D matrices. 2D matrices are very common in real-life applications, most of the images that we click are nothing but….

Plotting Scatter Plots With Altair in Python
A scatter plot (scatter graph, scatter chart, scattergram, or scatter diagram) is a type of plot which makes use of the Cartesian coordinates to display values typically two variables for a dataset. In this tutorial, we will understand how….

Top 5 Best Logo Maker Software Online
Creating a new brand logo is a big responsibility, which is why many freelancers and design firms charge a lot of money for such a service. But for a small startup, large expenses are undesirable…..

Phone Keypad Problem Using Recursion in C++
Today, we will learn to solve the phone keypad problem using recursion. It is quite an interesting problem in itself. Not only this problem is important for interviews, but it is also a great problem….

Sudoku Solver Using C++ [Easy Guide]
In this article, we will learn to implement a Sudoku Solver using C++. This is a perfect example of a recursion and backtracking algorithm. Have you ever tried to solve a 9×9 Sudoku puzzle? If….