Prashant Basnet, a software engineer at Unisala.com, focuses on software development and enjoys building platforms to share knowledge. Interested in system design, data structures, and is currently learning NLP

Author avatar
Prashant Basnet
title
              unisala image

Signature of Prashant Basnet

Author avatar
Prashant BasnetMar 27, 2025
The Greedy Gardener: A Simple Tale of Algorithms

Once upon a time, in a village of coders, there lived a gardener named Prashant. He had two ways of planting flowers in his garden Greedy and Non

3 min readGeneral
Article cover
Author avatar
Prashant BasnetMar 26, 2025
Minimum Weight Arborescence | CSCE 500 | Project 5

馃 Why Are You Learning This?The minimum-weight arborescence (MWA) problem is a fundamental problem in graph theory with applications in:Network desig

5 min readGeneral
Article cover
Author avatar
Prashant BasnetMar 25, 2025
Solving All Variations of the Lowest Common Ancestor (LCA) Problem in Binary Trees

Let me walk you through the different variations of the LCA problem and how to solve each one with slight modifications to the core algorithm.1. Basic LCA Probl

3 min readGeneral
Article cover
Author avatar
Prashant BasnetMar 25, 2025
How to Identify Greedy Problems?

Greedy algorithms:The class of algorithms that make locally optimal choices at each step with the hope that these choices will lead to a globally optimal soluti

13 min readGeneral
Article cover
Author avatar
Prashant BasnetMar 25, 2025
Make Array Zero by Subtracting Equal Amounts

You are given a non-negative integer array nums. In one operation, you must:Choose a positive integer x such that x is less than or equ

3 min readGeneral
Author avatar
Prashant BasnetMar 23, 2025
Thread: Understanding the 132 Pattern Problem | Monotonic Stack | N^3 -> N Complexity

1. What Are We Talking About?The 132 pattern is a problem where we need to find a subsequence of three numbers in an array (nums[i], nums[j],&nbs

4 min readGeneral
Article cover
Author avatar
Prashant BasnetMar 22, 2025
Finding the Single Non-Duplicate Element in a Sorted Array: A Binary Search

Situation:You are given a sorted array of integers where every element appears exactly twice, except for one element that appears only once.

4 min readGeneral
Article cover
Author avatar
Prashant BasnetMar 19, 2025
Hamiltonian Cycles: The Problem That Could Win You $1 Million

In the world of computer science and mathematics, some problems are deceptively simple to describe but incredibly challenging to solve.One such problem is the&n

7 min readGeneral
Article cover
Author avatar
Prashant BasnetMar 18, 2025
Greedy Algorithm | Dijkstra Algorithm

Greedy algorithm only applies to the optimization problem.Greedy algorithm makes the decision at every point choosing the local minimum or maximum depending on

4 min readGeneral
Article cover
Author avatar
Prashant BasnetMar 1, 2025
The Universal Framework for solving 5 Interval Problems | Greedy Algorithm

Imagine this: You鈥檙e in a coding interview at your dream company. The interviewer slides you a problem about scheduling meetings or merging overlapping interval

5 min readGeneral
Article cover
Author avatar
Prashant BasnetFeb 23, 2025
Deep Beliefs Network

If you stack several restricted Boltzmann machine on the top of each other then we form a deep belief networkInput layers -> suplied to 1st RBM -> inputs

1 min readGeneral
Article cover
Author avatar
Prashant BasnetFeb 20, 2025
Feature Development Update
1 min readGeneral
Article cover
Author avatar
Prashant BasnetFeb 19, 2025
Dynamic Programming: One Solution for Multiple Problems

In this thread we will see how a single dynamic programming (DP) approach can be adapted to solve multiple seemingly different problems. By understand

5 min readGeneral
Article cover
Author avatar
Prashant BasnetFeb 12, 2025
Singleton Design Pattern: The Key to Efficient and Maintainable Code

A Singleton is a design pattern that ensures a class has only one instance (object) throughout the entire application and provides a global point to access it.L

4 min readGeneral
Article cover
Author avatar
Prashant BasnetFeb 12, 2025
Bayes' Rule | Deep learnings

Bayes' Rule:A fundamental concept in probability theory. It allows us to update our belief about an event based on new evidence.probability of an event A, given

6 min readGeneral
Article cover
Author avatar
Prashant BasnetFeb 8, 2025
馃У Speed or 馃捑 Memory: The Trade-off Every Dev Must Know

Imagine you're building an app that needs to check if a number exists in a dataset of a million numbers. You have two options:1. 馃摑 Simple Array Search: &n

5 min readGeneral
Article cover
Author avatar
Prashant BasnetFeb 8, 2025
From Treasure Maps to Tech: Understanding Multi-Source Pathfinding | Islands and Treasures | Grid Algorithms

Let's first understand why is this question and it's solution significant to us:The Why??Algorithmic Pattern RecognitionIt's a gateway to understanding Dijkstra

7 min readGeneral
Article cover
Author avatar
Prashant BasnetFeb 7, 2025
Clone Graph: Deep Copying in Connected Systems

Imagine you're building a social network, and you need to create a test environment that perfectly mirrors your production network - every user, every connectio

5 min readGeneral
Article cover
Author avatar
Prashant BasnetFeb 6, 2025
How Restricted Boltzmann Machines Work? | Deep learning for Recommendation System

Here's a standard Boltzmann Machines:image credit:In theory it's a great problem, where reach node is connected to every other node.As we increase the number of

5 min readGeneral
Article cover
Author avatar
Prashant BasnetFeb 5, 2025
Efficient Graph Design: Matrix vs List Decision Guide | Data Structure

let's say we have a graph:How do we represent this Graph in data structure?Adjacency List:Represent this graph as anarray [ ] This array is going to have the eq

5 min readGeneral
Article cover
Author avatar
Prashant BasnetFeb 5, 2025
What are Heaps? Priority Queue | Real World Usage Like NewsFeed Design

Binary tree, Binary search tree, full and complete binary tree we can combine these ideas together so that we can learn a new assistant data structure which is

11 min readGeneral
Article cover
Author avatar
Prashant BasnetFeb 3, 2025
The Three Ages of React: Components, Metadata, and Graph Architecture

Every components starts simple enough, a few fields. Some basic state, clean, straightforward and manageable.But then reality hits.More fields. More validation.

7 min readGeneral
Article cover
Author avatar
Prashant BasnetJan 26, 2025
What, Why How to implement Trie?

Why Trie Data Structure?Whenever you start typing in modern applications - whether it's a search bar, messaging app, or navigation system, there's likely a Tri

4 min readGeneral
Article cover
Author avatar
Prashant BasnetJan 15, 2025
For vs While loop | When to use what?

Whenever we are updating the iteration by only 1 count regardless we use for.If we want to update out iteration based certain count depending on the condition.

2 min readGeneral
Article cover
Author avatar
Prashant BasnetJan 12, 2025
AI-Powered Assistant for User Signature

As a visitor to a Unisala user's signature page, I want to interact with an AI assistant that can intelligently answer questions about the user's professional b

2 min readGeneral
Article cover