Skip to content

Commit

Permalink
Merge branch 'release/0.4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
yalishanda42 committed Mar 17, 2020
2 parents b962864 + d37f1ef commit 20b03f0
Show file tree
Hide file tree
Showing 5 changed files with 426 additions and 429 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

## Sample functionality
``` pycon
>>> from polynomial.polynomials import Polynomial as P
>>> from polynomial import Polynomial as P
>>> a = P(1, 2, 3, 4)
>>> a
x^3 + 2x^2 + 3x + 4
Expand All @@ -36,7 +36,7 @@ ax^2 + bx + c
```

``` pycon
>>> from polynomial.polynomials import QuadraticTrinomial, Monomial
>>> from polynomial import QuadraticTrinomial, Monomial
>>> y = QuadraticTrinomial(1, -2, 1)
>>> y
x^2 - 2x + 1
Expand Down
Loading

0 comments on commit 20b03f0

Please sign in to comment.