Time complexity

Sir what will be time complexity in Unique number-III
of bit mainpulation.

@Shivk
In the worst case , the time complexity could be
O ( n* sizeof(int) )
But sizeof(int) can be considered as a constant factor. So the overall complexity would be O(n) only.