top of page

All of our Articles In One Place
Welcome to our Articles page, where you'll find a wealth of information on a variety of topics. From sorting to math, our of writers have you covered. Browse our collection of articles and learn something new today!


Breadth-First Search (BFS) — Explore Level by Level
While DFS goes deep, Breadth-First Search (BFS) is more social 😄. It explores neighbors level by level , like meeting everyone in your...
4 days ago1 min read


Depth-First Search (DFS) — Dive Deep First, Then Backtrack
Ever gone into a maze and kept turning left until you hit a wall, then backtracked to try another path? That’s exactly how Depth-First...
4 days ago1 min read


Dijkstra’s Algorithm — Finding the Shortest Path, Smartly
Let’s say you're in a city trying to get to a friend’s house 🚶♂️, and there are many roads with different travel times. You want to get...
5 days ago2 min read


Kruskal’s Algorithm — Connect the Dots, But Keep It Cheap
Let’s say you want to build bridges between islands 🏝️, and your goal is to connect all of them with the least cost , without making a...
5 days ago2 min read


Prim’s Algorithm: One Step at a Time
Imagine you're building roads to connect a group of villages. You want to make sure every village is connected without spending more...
6 days ago2 min read


The Data Science Pipeline: Step-by-Step Guide to Building Your First Project
1. Define the Problem: What Are You Solving? Before you even look at the data, ask yourself: What’s the goal? Are you predicting...
Jun 303 min read


Introduction To DeepSeek
In today’s new era, technology continues to improve at a greater rate, and one of the most exciting finds is artificial intelligence...
Mar 32 min read


Decision Trees vs Random Forests
Introduction Decision Trees and Random Forests can be considered as siblings in machine learning. They share similarities but have...
Mar 32 min read


Scikit-Learn: A Beginner’s Guide to Machine Learning in Python
Machine learning can sound complex, but with Scikit-Learn, it’s like having a personal guide that makes everything easier with respect to...
Feb 82 min read


APIs 101: What Are APIs? How Data Scientists Use Them?
Why APIs Matter for Data Scientists Have you ever wondered how data scientists effortlessly pull data from Twitter, Google Maps, or...
Feb 82 min read


Ethics in Data Science
"A man without ethics is a wild beast loosed upon this world." - Albert Camus Ethics, is the discipline concerned with what is morally...
Feb 83 min read


How Data Science Is Utilized In Healthcare
When you hear "data science in healthcare," it might sound like a buzzword used by tech experts. But in reality, it’s something that we...
Feb 42 min read


Introduction to Data Visualization
1. Introduction We would say Data visualization is the art of turning numbers into pictures that tell a story. Sounds interesting?...
Jan 192 min read


Python Libraries every Data Scientist should know
Introduction Data science is an emerging field that can be seen as solving a puzzle where each piece represents data that has to be...
Jan 193 min read


Data Science II - Types of Data
Data is defined as a collection of facts, numbers, words, observations or other useful information. This definition can be very broad in...
Jan 192 min read


Data Science I - Data Everywhere
Data science is the study of data to extract insights and develop strategies for businesses and industries. So you want to learn about...
Jan 192 min read


Majority Element (n/3 times)
Problem Statement: Given an array of integers, find all elements that appear more than n/3 times. The algorithm should run in linear time...
Jul 24, 20241 min read


Merge Two Sorted Arrays Without Extra Space
Problem Statement: Given two sorted arrays arr1 and arr2 of sizes n and m, respectively, merge them in such a way that the resulting...
Jul 24, 20241 min read


Pascals Triangle
Problem Statement: Given an integer numRows, generate the first numRows of Pascal's Triangle. In Pascal's Triangle, each number is the...
Jul 24, 20241 min read


Find the Row with the Maximum Number of 1’s
In this article, we will solve the problem of finding the row with the maximum number of 1’s in a binary matrix. Problem Statement: Given...
Jul 24, 20241 min read
bottom of page