Algorithms Determine if a number is a palindrome - Technical Interview Question The prompt:Given a number, write a function that can determine if the specified number is a palindrome. For example 134 is not a palindrome because reversing it results in
hashmaps The most important data structure for tech interviews. They come up in most if not all coding interviews, because they are essential to any performant software. You might know them by other higher level siblings names like dictionaries, maps or vectors.
Merge Sort Merge sort explained in 3 minutes. Get ready for any interview. Merge sort is one of the most beautiful and simplest algorithms. Its very short and at the same time very powerful because of its O(n * log n) speed.