Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
GordonLesti committed Oct 17, 2019
1 parent 4f8231e commit 6ea7b5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Coverage Status][ico-coveralls]][link-coveralls]
[![Total Downloads][ico-downloads]][link-downloads]

PHP Implementation of Longest common subsequence algorith that works with UTF-8.
PHP Implementation of Longest common subsequence algorithm that works with UTF-8 input.

## Install

Expand All @@ -22,10 +22,10 @@ $ composer require gordonlesti/longest-common-subsequence
use GordonLesti\LongestCommonSubsequence\LongestCommonSubsequence;
```

With default default costs.
Calculates the longest common subsequence of both strings and returns the length.

``` php
$$lcsDist = LongestCommonSubsequence::lcs("DABDC", "CBDBBAC");
$lcsDist = LongestCommonSubsequence::lcs("DABDC", "CBDBBAC");
```

## Change log
Expand Down

0 comments on commit 6ea7b5b

Please sign in to comment.