additional readme formatting

This commit is contained in:
lukew3
2020-10-05 13:44:38 -04:00
parent 0e08c1e6a9
commit 4196e245f3

View File

@@ -5,10 +5,10 @@ To try out generators, go to todarith.ml/generate
## List of Generators ## List of Generators
| Id | Skill | Ex. problem | Ex. Solution | Usage | Status | | Id | Skill | Example problem | Example Solution | Function Name | Status |
|------|----------------------------|-------------|---------------|----------------------------------|-------------| |------|----------------------------|-----------------|-------------------|----------------|-------------|
| 2 | Addition | 1+5= | 6 | addition(maxSum, maxAddend) | Complete | | 2 | Addition | 1+5= | 6 | addition | Complete |
| 3 | Subtraction | 9-4= | 5 | subtraction(maxMinuend, maxDiff) | Complete | | 3 | Subtraction | 9-4= | 5 | subtraction | Complete |
| 4 | Multiplication | 4*6= | 24 | | In Progress | | 4 | Multiplication | 4*6= | 24 | | In Progress |
| 5 | Division | 4/2= | 2 | | In Progress | | 5 | Division | 4/2= | 2 | | In Progress |
| - | Factoring | x^2+x-6 | (x-2)(x+3) | | Not Started | | - | Factoring | x^2+x-6 | (x-2)(x+3) | | Not Started |