BFS of graph

gfg-potd

Given a connected undirected graph containing V vertices, represented by a 2-d adjacency list adj[][], where each adj[i] represents the list of vertices connected to vertex i. Perform a Breadth First […]

DFS of Graph

gfg-potd

Given a connected undirected graph represented by a 2-d adjacency list adj[][], where each adj[i] represents the list of vertices connected to vertex i. Perform a Depth First

Maximize partitions in a String

gfg-potd

Given a string s of lowercase English alphabets, your task is to return the maximum number of substrings formed, after possible partitions (probably zero) of s such that no

2551. Put Marbles in Bags

leetcode-potd

You have k bags. You are given a 0-indexed integer array weights where weights[i] is the weight of the ith marble. You are also given the integer k. Divide the marbles

Gas Station

gfg-potd

There are some gas stations along a circular route. You are given two integer arrays gas[] denoted as the amount of gas present

Word Break

gfg-potd

You are given a string s and a list dictionary[] of words. Your task is to determine whether the string s can be formed by concatenating

Matrix Chain Multiplication

gfg-potd

Given an array arr[] which represents the dimensions of a sequence of matrices where the ith matrix has the dimensions (arr[i-1] x arr[i]) for i>=1, find the most efficient way to

Scroll to Top