top of page


Merge Sort Tutorial
What is Merge Sort? Merge Sort is a sorting algorithm that uses a divide-and-conquer strategy to sort an array or list of elements. The algorithm works by recursively dividing the array into smaller sub-arrays until each sub-array contains a single element. It then merges these sub-arrays back together in a sorted manner. How Does Merge Sort Work? Merge Sort follows these fundamental steps: Divide : Split the array into two halves until each sub-array contains a single elemen

Samvar Shah
Dec 23 min read
Â
Â
Â


Key Algorithms used in AI
Key AI Algorithms Here are a few important algorithms ones that form the basis of AI: 1. Linear Regression One of the most widely used algorithms, linear regression helps predict a value (like house prices) based on the relationship between variables. 2. Decision Trees Decision trees reflect human decision-making by breaking down decisions into a tree-like model. They work well for classification and regression problems. 3. K-Nearest Neighbors (KNN) KNN classifies data based

Samvar Shah
Oct 211 min read
Â
Â
Â


How Smart Cities Use Algorithms
Smart Cities are urban areas that use data, algorithms and automation to optimize infrastructure and improve quality of life. But how...

Samvar Shah
Jul 142 min read
Â
Â
Â


Linear Algebra in AI
How is linear algebra used in AI? Linear algebra includes vectors (ordered list of numbers), matrices and their linear transformations....

Samvar Shah
Mar 171 min read
Â
Â
Â


Math in AI
I have recently started looking into AI and have been playing with some AI models. But I want to understand how it works and therefore...

Samvar Shah
Feb 271 min read
Â
Â
Â


DFS Visualizer- How does it work?
Understand the DFS process. Input your own graph and visualize DFS traversal.

Samvar Shah
Jan 12 min read
Â
Â
Â


Algorithmic Art
Art using Math and Programming

Samvar Shah
Nov 10, 20241 min read
Â
Â
Â


Why Read The Code of Numbers?
Why The Code of Numbers Blog? The world of Mathematics and Coding is vast and ever-evolving. My goal is to bridge the gap between theory...

Samvar Shah
Aug 27, 20242 min read
Â
Â
Â
bottom of page