This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head><title>Fuzzy Search</title> | |
<script id="algorithm"> | |
//This algorithm is an original work by Andrew Matte in Toronto, [email protected] | |
//You are completely free to do whatever you want with this algorithm but, | |
//please credit me if the project is open source. Also there is no warranty that is it perfectly suited to your use case. | |
//Written originally in Visual Basic to replace VLOOKUP's fuzzy lookup in Microsoft Excel | |
//in 2014, implemented in MS-SQL, Python, and JS. | |
//Apologies for any similarities to an algorithm you personally might have written independently. | |
var proximity = (wordA, wordB) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head><title>No Framework JavaScript</title> | |
<style> | |
table { | |
border-collapse: collapse; | |
} | |
table, th, td { | |
border: 1px solid black; | |
} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#http://bit.ly/28VdHva | |
########## | |
#VARIABLES | |
########## | |
#numbers | |
a = 3 #float, int, and long | |
#strings | |
b = 'ha ' |
NewerOlder