From 0bae31f1ad06ae34dfe652a03fb6c0d8f0ecee3e Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Mon, 30 May 2022 10:05:09 +0200 Subject: [PATCH] fix(curriculum): external list wiki link in CIP (#46228) Co-authored-by: Mrugesh Mohapatra <1884376+raisedadead@users.noreply.github.com> --- .../rosetta-code/compare-a-list-of-strings.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/compare-a-list-of-strings.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/compare-a-list-of-strings.md index 313cda7dcc3..56642a17876 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/compare-a-list-of-strings.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/compare-a-list-of-strings.md @@ -8,7 +8,13 @@ dashedName: compare-a-list-of-strings # --description-- -Given a [list](https://en.wikipedia.org/wiki/List_(abstract_data_type) "wp: List\_(abstract_data_type)") of arbitrarily many strings, implement a function for each of the following conditions: +A list or sequence is an abstract data type that represents a finite number of ordered values, where the same value may occur more than once. Here is an example: + +```js +const list = [['AA', 'BB', 'CC'], ['AA', 'ACB', 'AA'], [], ['AA']]; +```` + +Given a list of arbitrarily many strings, implement a function for each of the following conditions: