Skip to content

Coding Interview

All about coding interview procedures, questions, and examples. We might solve some coding questions or just talk about how to prepare for one.

Largest Palindrome Product Cover

Largest Palindrome Product

This is a somewhat common interview question that asks the following. Consider there is an array holding sorted numbers in an established range. For our example, we’ll propose numbers ranging from 1 to 100. No duplicate elements are allowed. Also, there is only one element missing. What is that element? Or to rephase it – how to find the missing number in a given integer array?

Largest Prime Factor Cover

Largest Prime Factor

This is a somewhat common interview question that asks the following. Consider there is an array holding sorted numbers in an established range. For our example, we’ll propose numbers ranging from 1 to 100. No duplicate elements are allowed. Also, there is only one element missing. What is that element? Or to rephase it – how to find the missing number in a given integer array?

Even Fibonacci Numbers Cover Image

Even Fibonacci Numbers

This is a somewhat common interview question that asks the following. Consider there is an array holding sorted numbers in an established range. For our example, we’ll propose numbers ranging from 1 to 100. No duplicate elements are allowed. Also, there is only one element missing. What is that element? Or to rephase it – how to find the missing number in a given integer array?

Multiples of 3 and 5 Cover

Multiples of 3 or 5

This is a somewhat common interview question that asks the following. Consider there is an array holding sorted numbers in an established range. For our example, we’ll propose numbers ranging from 1 to 100. No duplicate elements are allowed. Also, there is only one element missing. What is that element? Or to rephase it – how to find the missing number in a given integer array?

Find the Missing number in range Cover Image

How to find the missing number in a given integer array of 1 to 100?

This is a somewhat common interview question that asks the following. Consider there is an array holding sorted numbers in an established range. For our example, we’ll propose numbers ranging from 1 to 100. No duplicate elements are allowed. Also, there is only one element missing. What is that element? Or to rephase it – how to find the missing number in a given integer array?

What is the logarithmic runtime O(log(n))?

What is the logarithmic runtime O(log(n))?

In mathematics, the logarithm is the inverse function to exponentiation. That means the logarithm of a given number x is the exponent to which another fixed number, the base b, must be raised, to produce that number x. Wikipedia Introduction If you want to see the original post and refresh your knowledge on Big O notation please click… Read More »What is the logarithmic runtime O(log(n))?