Use objective-c write code to return the first repeated integer from a given array, with O(n) time
Anonymous
Use a Hash Table to insert each element (in our case number) - search and insert of each of the N element is O(1) Search and Insert all N elements is O(N) Whenever a given elements already exist at the Hash Table output this element
Check out your Company Bowl for anonymous work chats.