u can identify the duplicated uid in your system
this useful to identify if there some manipulation inside the users’ accounts
getent passwd|cut -d : -f3 |sort -n|uniq -d
it only returns the duplicated uid
btw: if it returns 0 😀 you know the rest