Hi,
There is a data set of "file" - name of file, and 32bit number is following after it - something like hash for the file.
"file1" 6a9bd9a6 1df3b24b 7ab054dc
"file2" 6a9bd54e 1df3b24b 8cd054dc
"file3" 6a9bd9a6 7ab054dc
How am I going to get unique files so s2 is not a prefix of any other s2 - that means the number is unique. If there are two same s2s, both of them are unique if they are not prefixes to any other s2.
I'm looking for a fast solution. I could come up with solution to compare each string to every other but it would be too time consuming and uneffective. Another option was to somehow use MySQL engine for tables, but I am not sure how. Can you help?