From f2c00f9e8a449b0e0df1e245f3cef3759e71f19c Mon Sep 17 00:00:00 2001 From: Pedro Santos Date: Fri, 18 Oct 2024 13:09:20 +0200 Subject: [PATCH] fix: REAMED implied the wrong output --- 6_PrimeFactors/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/6_PrimeFactors/README.md b/6_PrimeFactors/README.md index 9f0924c..e01f56f 100644 --- a/6_PrimeFactors/README.md +++ b/6_PrimeFactors/README.md @@ -6,13 +6,13 @@ For example: | **Input** | **Output** | | --------- | ---------- | -| 2 | `[2]` | -| 3 | `[3]` | -| 4 | `[2,2]` | -| 6 | `[2,3]` | -| 9 | `[3,3]` | -| 12 | `[2,2,3]` | -| 15 | `[3,5]` | +| 2 | [2] | +| 3 | [3] | +| 4 | [2,2] | +| 6 | [2,3] | +| 9 | [3,3] | +| 12 | [2,2,3] | +| 15 | [3,5] | ## Folow TDD rules strictly