fix(curriculum): external taxicab links in CIP (#46346)

pull/46357/head
Muhammed Mustafa 2022-06-05 18:55:49 +02:00 committed by GitHub
parent aab98a1211
commit 2fd8c6047a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 8 deletions

View File

@ -8,7 +8,7 @@ dashedName: taxicab-numbers
# --description--
A [taxicab number](<https://en.wikipedia.org/wiki/HardyRamanujan number> "wp: HardyRamanujan number") (the definition that is being used here) is a positive integer that can be expressed as the sum of two positive cubes in more than one way.
A taxicab number (the definition that is being used here) is a positive integer that can be expressed as the sum of two positive cubes in more than one way.
The first taxicab number is `1729`, which is:
@ -29,13 +29,6 @@ Taxicab numbers are also known as:
Write a function that returns the lowest `n` taxicab numbers. For each of the taxicab numbers, show the number as well as its constituent cubes.
**See also:**
<ul>
<li><a href='https://oeis.org/A001235' target='_blank'>A001235 taxicab numbers</a> on The On-Line Encyclopedia of Integer Sequences.</li>
<li><a href='https://en.wikipedia.org/wiki/Taxicab_number' target='_blank'>taxicab number</a> on Wikipedia.</li>
</ul>
# --hints--
`taxicabNumbers` should be a function.