Latest Coding Articles

Decoding Hot Reload in Flutter 2

Decoding Hot Reload in Flutter

Hot Reload in Flutter is one of the top feature provided by Google for its mobile and web application developer. Its one of the Flutter’s awesomely powerful feature know as Hot Reload. So let’s decode Hot Reload in Flutter. But sometimes it may not works that way you want it to be, even though your … 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

How To Change Application Launcher icon – Flutter

How To Change Application Launcher icon - Flutter

Today we will be discussing how to change the application launcher icon on flutter. Since flutter launcher icons are designed to create launcher icons for both Android and iOS automatically, sometimes a user can go into an issue and may not be able to change the launcher icon. If you have created the app with … 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

RotatedBox Flutter Widget of the Week

RotatedBox Flutter

Today we will be discussing usage of RotatedBox in Flutter application. When and Why to use RotatedBox while you are developing an android and iOS application. If you want to rotate any of the widgets in your application then in that case you would be using the RotatedBox widget to get the work done easily. … 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

What is LeetCode and Its Importance To SE

What is LeetCode and Its Importance To SE

You have a lot of Software engineers discussing LeetCode on the Web. What is LeetCode? Today we will be discussing why it’s the most important thing you should know if you are from a Software Engineering background. And also we will discuss what are its alternatives you can use. What is LeetCode? It’s a website … Read more