#Unisala universe

Unisala universe
              unisala image
Author avatar
Prashant BasnetToday
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 BasnetToday
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 BasnetYesterday
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 BasnetYesterday
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 Basnet3 days ago
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 Basnet4 days ago
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
Brain DumpMar 18, 2025
Same Binary Tree | LeetCode

Given the roots of two binary trees p and q, return true if the trees are equivalent, otherwise return false.Two binary trees

1 min readGeneral
Article cover
Author avatar
Brain DumpMar 18, 2025
Subtree of Another Tree

This problem check if a certain part of a tree is same tree as a given subtree.So before we solve this problem, we need to know how to check if two trees are sa

1 min readGeneral
Article cover
Author avatar
Brain DumpMar 18, 2025
Binary Search Tree | Subset of Binary Tree

Binary search tree is great for searching or comparing things?We know using a hash-table we have O(1) for look up, then why study Binary Search Tree?Why is this

3 min readGeneral
Author avatar
Brain DumpMar 18, 2025
Balanced Binary Tree | Neetcode

Given a binary tree, return true if it is height-balanced and false otherwise.A height-balanced binary tree is defined a

2 min readGeneral
Article cover
Author avatar
Brain DumpMar 18, 2025
MaxDepth VS Diameter of Binary Search Tree

Maximum Depth (Height):Performance Indicator Tells you how efficient your BST operations will beOperations like search, insert, delete take O(h) time, where h i

2 min readGeneral
Article cover
Author avatar
Anonymous UserMar 18, 2025
When to pick DFS vs BFS? Number of Islands

/** * @param {character[][]} grid * @return {number} */var numIslands = function(grid) { let count = 0 for(let i = 0; i < grid.length; i++){

2 min readGeneral
Author avatar
Anonymous UserMar 18, 2025
Rotten Orange Grid Traversal Algorithm | 2D Array | Graph Traversal Algo

You are given an m x n grid where each cell can have one of three values:0 representing an empty cell,1 representing a fresh orange, or

4 min readGeneral
Article cover
Author avatar
Anonymous UserMar 17, 2025
Kahn's Algorithm | Course Schedule

Thy why???Let's see the real world usage of this solution.  Real-World ApplicationsCourse Scheduling: The problem directly models real-world scenarios, suc

6 min readGeneral
Article cover
Author avatar
Anonymous UserMar 13, 2025
"""Given a string s, reverse only all the vowels in the string and return it.The vowels are 'a', 'e'

"""Given a string s, reverse only all the vowels in the string and return it.The vowels are 'a', 'e', 'i', 'o', and 'u', and they can appear in both lower and u

1 min readGeneral
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
Brain DumpFeb 28, 2025
When the game is over, the King and the pawn go in the same box.

When the game is over, the King and the pawn go in the same box.

1 min readGeneral
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
Brain DumpFeb 23, 2025
Reducing CPU cycles | CSCE-533 | Computer Architecture

Let me try a different approach with a simpler example.Imagine counting down from 5 to 0:for (i=5; i>=0; i=i-1) { // do something } The loop needs to:Sta

5 min readGeneral
Article cover
Author avatar
Array AlchemistFeb 21, 2025
Exploring Backtracking and Memoization for Decoding Digit Strings

You have intercepted a secret message encoded as a string of numbers. The message is decoded via the following mapping:"1" -> 'A'"2" -> 'B'"25"

5 min readGeneral
Article cover
Author avatar
Array AlchemistFeb 20, 2025
Understanding Palindromes: Brute Force vs Expand Around Center Algorithms | Optimizing Time Complexity | n^3 vs n^2

The algorithm discussed in this thread expand around center approach is a powerful technique that can solve a variety of problems related to pali

7 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