Manoj SatishkumarOct 9, 20221 minInterview questionsReverse String | Oracle Interview QuestionWrite a function to reverse a given string using a stack. let inputString = "ABCDEFG"; let reversedString = reverseString(string);
Manoj SatishkumarSep 21, 20222 minInterview questionsBinary Strings | Google Interview QuestionThis problem has been presented many times in DS & Algo coding round. Please get familiar with how function recursion works.
Manoj SatishkumarSep 20, 20221 minInterview questionsEvent Emitter | Facebook Interview QuestionImplement an event emitter with the following functionalities - on() - once() - emit() - off() - listenersCount() - rawListeners()