From 324e70df288119ec8bf696bd77f0afd922797b19 Mon Sep 17 00:00:00 2001 From: Nik <93073558+nik-don@users.noreply.github.com> Date: Thu, 23 Mar 2023 18:02:05 +0000 Subject: [PATCH] fix formating of instructions list By adding a missing 'space --- subjects/hashing/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/hashing/README.md b/subjects/hashing/README.md index cb63df2a..3afac3c8 100644 --- a/subjects/hashing/README.md +++ b/subjects/hashing/README.md @@ -4,7 +4,7 @@ Given a list of integers (`Vec`) write three **functions**. --`mean`: that calculates the mean (the average value) of all the values in the list. +- `mean`: that calculates the mean (the average value) of all the values in the list. - `median`: that calculates the median (for a sorted list, it is the value in the middle). If there is an even amount of numbers in the list, the middle pair must be determined, added together, and divided by two to find the median value.