(a, b, c int)
| 49 | } |
| 50 | |
| 51 | func min(a, b, c int) int { |
| 52 | if a < b && a < c { |
| 53 | return a |
| 54 | } |
| 55 | if b < c { |
| 56 | return b |
| 57 | } |
| 58 | return c |
| 59 | } |
| 60 | |
| 61 | // matchFuzzy takes in a value (from posting) and compares it to our list of ngram tokens. |
| 62 | // Returns true if value matches fuzzy tokens, false otherwise. |
no outgoing calls