-
8 Patterns Review For Successful Coding Interview
8 Patterns Review For Successful Coding Interview This is nothing but quick 5 min revision before going to interview. Visit https: https://codeandalgo.com for more such contents
-
Interview Question Bank
Technical Behaviour
-
Coin Change
Problem Statement You are given an integer array coins representing coins of different denominations and an integer amount representing a total amount of money. Return the fewest number of coins that you need to make up that amount. If that amount of money cannot be made up by any combination of the coins, return -1. You may assume that you have…
-
Escape the Spreading Fire
Problem Statement You are given a 0-indexed 2D integer array grid of size m x n which represents a field. Each cell has one of three values: You are situated in the top-left cell, (0, 0), and you want to travel to the safehouse at the bottom-right cell, (m – 1, n – 1). Every minute, you may move to an adjacent grass cell. After your move,…
-
Course Schedule
Problem Statement There are a total of numCourses courses you have to take, labeled from 0 to numCourses – 1. You are given an array prerequisites where prerequisites[i] = [ai, bi] indicates that you must take course bi first if you want to take course ai. Return true if you can finish all courses. Otherwise, return false. Example 1: Input: numCourses = 2, prerequisites = [[1,0]] Output: true Explanation: There are a…
-
Top 10 architecture every engineer should know
Top 10 architecture every engineer should know Architectural Patterns Cloud Native Design Patterns Programming Paradigms Code Cleanliness Please visit https://codeandalgo.com/ for more content.
-
Priority Queues
Interview Question Priority Queues Golang Solution Output