diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/averages-mode.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/averages-mode.md index e9f98a9187f..fd39e45c754 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/averages-mode.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/averages-mode.md @@ -8,7 +8,7 @@ dashedName: averagesmode # --description-- -Write a program to find the [mode]( "wp: Mode (statistics)") value of a collection. +Write a function `mode` to find the value that appears most in an array. The case where the collection is empty may be ignored. Care must be taken to handle the case where the mode is non-unique.