#interview-questions
Read more stories on Hashnode
Articles with this tag
Problem Link - https://practice.geeksforgeeks.org/problems/permutations-of-a-given-string2041/1 Input: ABC Output: ABC ACB BAC BCA CAB...
Problem Statement: Note: Try to solve this task in O(list size) time using O(1) additional space, since this is what you'll be asked during an...
Problem Statement: You have two strings, s and t. The string t contains only unique elements. Find and return the minimum consecutive substring of s...
Problem: You have an unsorted array arr of non-negative integers and a number s. Find the longest contiguous subarray in arr that has a sum equal to...
Problem Statement : Given an array of integers, find the maximum possible sum you can get from one of its contiguous subarrays. The subarray from...
Problem Statement - https://practice.geeksforgeeks.org/problems/game-of-death-in-a-circle1840/1 class Solution { static int safePos(int n, int k)...