For my current project I need to find a way to "fuzzy" - fingerprint a javascript array client-side.
The problem is that the elements inside the array can change over time. By change I mean the order is stable but some elements may be removed and others my be included. Now I need to find a way that produces exactly the same fingerprint (within a given threshold).
I'm currently thinking about a kind of a partial match implementation but I'm curious how others would do it.