From bccb54bdaf4ae008b452b561f425df38ebb0f1c4 Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Fri, 3 Jun 2022 09:50:25 +0200 Subject: [PATCH] fix(curriculum): external mode link in CIP (#46306) --- .../10-coding-interview-prep/rosetta-code/averages-mode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.