fix(curriculum): replace unicode minus with dash in challenge 165 (#65435)

This commit is contained in:
vikas kumar jhade
2026-01-23 03:22:55 +05:30
committed by GitHub
parent 8865fcb242
commit 4f30bdec9a
2 changed files with 2 additions and 2 deletions
@@ -13,7 +13,7 @@ Given an array of exam scores (numbers), return the average score in form of a l
| - | - |
| 97-100 | `"A+"` |
| 93-96 | `"A"` |
| 90-92 | `"A"` |
| 90-92 | `"A-"` |
| 87-89 | `"B+"` |
| 83-86 | `"B"` |
| 80-82 | `"B-"` |
@@ -13,7 +13,7 @@ Given an array of exam scores (numbers), return the average score in form of a l
| - | - |
| 97-100 | `"A+"` |
| 93-96 | `"A"` |
| 90-92 | `"A"` |
| 90-92 | `"A-"` |
| 87-89 | `"B+"` |
| 83-86 | `"B"` |
| 80-82 | `"B-"` |