fix(curriculum): external list wiki link in CIP (#46228)

Co-authored-by: Mrugesh Mohapatra <1884376+raisedadead@users.noreply.github.com>
pull/46216/merge
Muhammed Mustafa 2022-05-30 10:05:09 +02:00 committed by GitHub
parent 813d1b23b4
commit 0bae31f1ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -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:
<ul>
<li>test if they are all lexically equal</li>