Identical Linked Lists

gfg-potd

Given the two singly Linked Lists respectively. The task is to check whether two linked lists are identical or not. Two Linked Lists are identical

The Palindrome Pattern

gfg-potd

Given a two-dimensional integer array arr of dimensions n x n, consisting solely of zeros and ones, identify the row or column (using

Toeplitz matrix

gfg-potd

A Toeplitz (or diagonal-constant) matrix is a matrix in which each descending diagonal from left to right is constant, i.e.,

78. Subsets

leetcode-potd

Given an integer array nums of unique elements, return all possible subsets (the power set). The solution set must not contain duplicate subsets. Return the solution in any order. Example

76. Minimum Window Substring

leetcode-potd

Given two strings s and t of lengths m and n respectively, return the minimum window substring of s such that every character in t (including duplicates) is included in the window. If there is no

Scroll to Top