Write a function that accepts a string argument and removes duplicate characters that are neighbors. If the new string also has duplicate neighbors, those should be removed also.
reduce_dups('abb') => "a"
reduce_dups('abba') => ""
reduce_dups('aba') => "aba"