Write the actual code to reverse a linked list
Engineers Interview Questions
842,634 engineers interview questions shared by candidates
Write the actual code to parse a regular expression including "*", which stands for 0 or more characters, "+", which stands for 1 or more characters, and ".", which stands for 1 exact character.
Design a divide by 3 counter. Bonus for 50% duty cycle
Given an array [1, 2, 3, 4, 3, 5] and number x, rotate the array such that all occurrences of x are shifted at the end. For example, x = 3, then output should be [1, 2, 4, 5, 3, 3]
Pretty much the same thing as the Microsoft one in this link. I wasted too much time on question 2 and didn't get a chance to submit an answer but I finished it for fun after the test. https://webcache.googleusercontent.com/search?q=cache:KocTw550s_UJ:https://leetcode.com/discuss/interview-question/760379/Microsoft-or-OA-2020-or-Word-Machine+&cd=1&hl=en&ct=clnk&gl=ru&client=safari
Two jars of capacity 3litre and 5litre need to be used to measure 6 litre. how will you do it?
Interviewer gave me an array of character and asked me to find first non-repeating character
Implement a stack using a Queue
I had a difficult question about a cuboid composed of smaller cubes. How many cubes are there where exactly two faces of the cube are exposed?
How would you count the number of words in a string consisting of uneven number of spaces between words( not dictionary words)? With and without library functions.
Viewing 1871 - 1880 interview questions