File: EXAMPLE

package info (click to toggle)
python-ete3 3.1.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,876 kB
  • sloc: python: 52,497; javascript: 12,959; xml: 4,903; ansic: 69; sql: 65; makefile: 26; sh: 7
file content (10 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
$ sqlite3 
SQLite version 3.6.22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .load ./levenshtein.sqlext 
sqlite> SELECT LEVENSHTEIN( 'This is not correct', 'This is correct' );
4
sqlite> SELECT LEVENSHTEIN( NULL, 'aaa' ) IS NULL;
1