GCGY Beta v1.0.1
GrowCodeEngineering
← Back to Hub
FLAGSHIP CURRICULUM REPOSITORY (5,023 VERIFIED QUESTIONS)

GrowCode Problem Bank & Competence Engine.

Master engineering competence across 11 core subjects. Filter 5,018+ questions by Subject, Topic, Difficulty, and Question Type.

Showing 25 of 5,023 questions (Page 1 of 201)
ADVANCEDDSACODINGBinary Tree Path Invariant Validation
Given the root of a binary tree, compute the maximum path sum between any two nodes.
Time: O(N) | Space: O(H)
Solve / View
BEGINNERDSACODINGString Character Frequency Anagram Verification
Write a function that determines whether string t is an anagram of string s using character frequency arrays.
Time: O(N) | Space: O(1)
Solve / View
INTERMEDIATEDSACODINGSubarray Target Sum Invariant Verification
Given a sorted array of positive integers and a target sum, find continuous start and end indices matching tar
Time: O(N) | Space: O(1)
Solve / View
BEGINNERDSACODINGStack Parenthesis Balance Verification
Determine if a string containing '()', '{}', and '[]' characters is validly balanced.
Time: O(N) | Space: O(N)
Solve / View
INTERMEDIATEDSACODINGRotated Sorted Array Search Invariants
Search for a target value in a rotated sorted array in O(log N) runtime.
Time: O(log N) | Space: O(1)
Solve / View
INTERMEDIATEDSACODINGFloyd's Fast-Slow Pointer Cycle Verification
Determine if a singly linked list contains a cycle using O(1) auxiliary memory.
Time: O(N) | Space: O(1)
Solve / View
ADVANCEDDSACODING2D Grid Connected Component Traversal
Count the number of distinct islands in a 2D binary grid where '1' is land and '0' is water.
Time: O(M * N) | Space: O(M * N)
Solve / View
INTERMEDIATECCODINGMinimum Coin Change Dynamic Programming
Given coin denominations and a total amount, return the minimum number of coins needed to make up that amount.
Time: O(N * Amount) | Space: O(Amount)
Solve / View
INTERMEDIATEDSACODINGMin-Heap Top K Frequent Elements
Given an integer array nums and an integer k, return the k most frequent elements in O(N log k) time.
Time: O(N log k) | Space: O(N)
Solve / View
FUNDAMENTALSC++OUTPUT_PREDICTIONTemplates & Generic Programming
Predict the output of the following C++ code snippet covering Templates & Generic Programming: ``` // Scenario
Time: O(N) | Space: O(1)
Solve / View
INTERMEDIATEPythonDEBUGGINGGenerators & Iterators
Analyze the core conceptual invariant of Generators & Iterators in Python (Scenario #3).
Time: O(N) | Space: O(1)
Solve / View
ADVANCEDJavaScriptCONCEPTUALPrototypes & Inheritance
Analyze the core conceptual invariant of Prototypes & Inheritance in JavaScript (Scenario #4).
Time: O(N) | Space: O(1)
Solve / View
BEGINNERDBMSTRACE_EXECUTIONER Modeling & Keys
Analyze the core conceptual invariant of ER Modeling & Keys in DBMS (Scenario #6).
Time: O(1) | Space: O(1)
Solve / View
FUNDAMENTALSOperating SystemsSQL_QUERYProcess States & Lifecycle
Analyze the core conceptual invariant of Process States & Lifecycle in Operating Systems (Scenario #7).
Time: O(N) | Space: O(1)
Solve / View
Page 1 of 201