Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function a_match(line1,line2, p ,pp) {
matches = 0
z[1] = split(line1,arr1,"")
z[2] = split(line2,arr2,"")
if (!z[1] || !z[2]) {
return -1
} else {
for (p=1 ; p <= z[1] ; p++) {
for (pp=1 ; pp <= z[2] ; pp++) {
if (arr1[p] == arr2[pp]) {
matches++
}
}
}
}
return matches
}
BEGIN {
threshold = 4
}
if ( (a_match(prev,$0)) >= threshold) {
print prev," is similar to", $0
}