Thank you :)
I modified it to this code, and it worked :)
awk -F '[, \t]' 'BEGIN { n = 1; }{ for (**i = 2**; i <= NF; i++) { if ($i in ht) { print "non-unique element "$i" was found on "ht[$i]" and **"$1"** "; for (j in f) { if (f[j] == $i) f[j] = 0; } } else { ht[$i] = $1 ; f[n] = $i; n++; } } } END { for **(i = 2**; i < n; i++) { if (f[i] != 0) { print "unique element "f[i]" found on line "ht[f[i]]; } } }' |\
How can I tell it to consider tab comma and space as separators? : '[, \t]' I guess this one doesn't consider white space.