Maker checker flow
System Design Interview question solution
Mar 21, 20234 min read103
Search for a command to run...
Articles tagged with #interview-questions
System Design Interview question solution
Problem Statement - Create a function that accepts multiple functions as an argument and a value and run this value through each function and return the final output. Example- Input: const val = { salary: 10000 }; const getSalary = (person) => person...
Problem Statement - Given an object which can have a function as a value at a nested level, create a function that will accept arguments as input and pass it through all the functions in the input object and return the computed value. Example- Input:...