Write a function which, given n, prints all well-ordered integers of n digits. A well ordered number is one where the value of the i-th digit is less than the value of the i+1 digit.
Software Developer Entry Level Interview Questions
711,524 software developer entry level interview questions shared by candidates
What's the difference between JavaScript and Python?
What is the difference between display inline and inline-block ?
Given two array of characters, add them together like an addition problem and return them in a char array. ['3', '5', '9'] ['1', 2', '8', '4'] = 1284 + 359 = 1643 = ['1', '6', '4', '3']
Write the actual code to reverse a linked list
Move zeros to end of given array.
Write a function that takes in an integer and returns the number of ones set in the binary representation.
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.
Output a substring with at most k unique characters. "aabc" and k=2 -> "aab"
How to find the median in an array. You need to consider all the possible conditions.
Viewing 1681 - 1690 interview questions