BYJU's | OA+DS&PS | SE/SSE

byjus logo
byjus
Software Engineer / Senior Software EngineerOngoing
January 7, 20223 reads

Summary

I received a list of data structures and problem-solving questions from a BYJU's recruiter for a Software Engineer / Senior Software Engineer position, and I encountered the 'Coin Change' problem from this list during my online assessment.

Full Experience

I was provided with a comprehensive list of data structures and problem-solving questions by the BYJU's recruiter, intended for an Online Assessment (OA) or technical interview for a Software Engineer/Senior Software Engineer role. During my assessment, I specifically encountered the 'Coin Change' problem, which was one of the many problems detailed in the list. I also observed that several other candidates who shared their experiences had received questions from the same list, suggesting its importance as a resource for preparation.

Interview Questions (22)

Q1
Subarray with Sum K
Data Structures & AlgorithmsMedium

Given an array of integers and an integer k, find the total number of continuous subarrays whose sum equals k.

Q2
Sort Array of 0s and 1s
Data Structures & AlgorithmsEasy

Given an array containing only 0s and 1s, sort the array in ascending order.

Q3
Minimum Distance Pair
Data Structures & AlgorithmsMedium

Find the pair of elements in an array with the minimum absolute difference.

Q4
Sum of All Nodes in BST
Data Structures & AlgorithmsEasy

Calculate the sum of values of all nodes in a Binary Search Tree (BST).

Q5
Second Largest Element in Array
Data Structures & AlgorithmsEasy

Find the second largest element in a given array of integers.

Q6
Middle of Linked List
Data Structures & AlgorithmsEasy

Find the middle node of a singly linked list. If the list has an even number of nodes, return the second middle node.

Q7
Validate Binary Search Tree
Data Structures & AlgorithmsMedium

Given the root of a binary tree, determine if it is a valid Binary Search Tree (BST).

Q8
Min Stack
Data Structures & AlgorithmsMedium

Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.

Q9
Inorder Traversal Iterative
Data Structures & AlgorithmsMedium

Perform an inorder traversal of a binary tree iteratively without using recursion.

Q10
Inorder Traversal Morris
Data Structures & AlgorithmsHard

Perform an inorder traversal of a binary tree iteratively without using recursion or an explicit stack (Morris Traversal).

Q11
Largest Rectangle in Histogram
Data Structures & AlgorithmsHard

Find the largest rectangle possible in a given histogram where each bar has a width of 1.

Q12
Reverse Linked List
Data Structures & AlgorithmsEasy

Reverse a singly linked list without using extra space (in-place).

Q13
Set Matrix Zeroes
Data Structures & AlgorithmsMedium

Given an m x n integer matrix, if an element is 0, set its entire row and column to 0.

Q14
Coin Change
Data Structures & AlgorithmsMedium

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.

Q15
Binary Tree Zigzag Level Order Traversal
Data Structures & AlgorithmsMedium

Given the root of a binary tree, return the zigzag level order traversal of its nodes' values (i.e., from left to right, then right to left for the next level and alternate between).

Q16
Binary Tree Left Side View
Data Structures & AlgorithmsMedium

Given the root of a binary tree, imagine yourself standing on the 'left' side of it, return the values of the nodes you can see ordered from top to bottom.

Q17
Diameter of Binary Tree
Data Structures & AlgorithmsEasy

Given the root of a binary tree, return the length of the diameter of the tree. The diameter of a binary tree is the length of the longest path between any two nodes in a tree. This path may or may not pass through the root.

Q18
Valid Parentheses
Data Structures & AlgorithmsEasy

Given a string s containing just the characters '(', ')', '{', '}', '[', ']', determine if the input string is valid.

Q19
Duplicate Parentheses
Data Structures & AlgorithmsMedium

Given a balanced expression, find if it contains any duplicate parentheses. A set of parentheses are duplicate if the same subexpression is enclosed in multiple sets of parentheses.

Q20
Common Elements in Three Sorted Arrays
Data Structures & AlgorithmsEasy

Given three integer arrays nums1, nums2, and nums3, sorted in strictly increasing order, return a sorted array of only the integers that appeared in all three arrays.

Q21
Kth Largest Element in a BST
Data Structures & AlgorithmsMedium

Given the root of a Binary Search Tree (BST) and an integer k, return the kth largest element in the tree.

Q22
Search a 2D Matrix II
Data Structures & AlgorithmsMedium

Write an efficient algorithm that searches for a target value in an m x n integer matrix. This matrix has the following properties: Integers in each row are sorted in ascending order. Integers in each column are sorted in ascending order.

Discussion (0)

Share your thoughts and ask questions

Join the Discussion

Sign in with Google to share your thoughts and ask questions

No comments yet

Be the first to share your thoughts and start the discussion!