Arista Networks Interview Question

Find the missing integer in a continuous series of integers

Interview Answer

Anonymous

Nov 12, 2018

First did the naive solution (O(n)) , then implemented a binary-search-esque solution (O(logn)).