Created
February 6, 2019 23:26
-
-
Save tehsven/738bf44f7ac25ace633f015dd82728c3 to your computer and use it in GitHub Desktop.
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
# Normalized Terms | |
index = SearchIndex.new | |
index.add(0, "this is a capitalized EXAMPLE") | |
index.add(1, "here is a lower case example") | |
index.add(2, "and one More example") | |
index.search("example") | |
=> returns Document 0, 1 and 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment