Removes RSA links from English challenges (#37869)
* RSA links deleted from challenges * fix: remove remaining RSA links in challenges
This commit is contained in:
@ -9,7 +9,6 @@ forumTopicId: 301611
|
||||
<section id='description'>
|
||||
Create a function that takes two or more arrays and returns an array of the <dfn>symmetric difference</dfn> (<code>△</code> or <code>⊕</code>) of the provided arrays.
|
||||
Given two sets (for example set <code>A = {1, 2, 3}</code> and set <code>B = {2, 3, 4}</code>), the mathematical term "symmetric difference" of two sets is the set of elements which are in either of the two sets, but not in both (<code>A △ B = C = {1, 4}</code>). For every additional symmetric difference you take (say on a set <code>D = {2, 3}</code>), you should get the set with elements which are in either of the two the sets but not both (<code>C △ D = {1, 4} △ {2, 3} = {1, 2, 3, 4}</code>). The resulting array must contain only unique values (<em>no duplicates</em>).
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck. Try to pair program. Write your own code.
|
||||
</section>
|
||||
|
||||
## Instructions
|
||||
|
@ -8,7 +8,6 @@ forumTopicId: 16019
|
||||
## Description
|
||||
<section id='description'>
|
||||
Compare and update the inventory stored in a 2D array against a second 2D array of a fresh delivery. Update the current existing inventory item quantities (in <code>arr1</code>). If an item cannot be found, add the new item and quantity into the inventory array. The returned inventory array should be in alphabetical order by item.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck. Try to pair program. Write your own code.
|
||||
</section>
|
||||
|
||||
## Instructions
|
||||
|
@ -9,7 +9,6 @@ forumTopicId: 16037
|
||||
<section id='description'>
|
||||
Return the number of total permutations of the provided string that don't have repeated consecutive letters. Assume that all characters in the provided string are each unique.
|
||||
For example, <code>aab</code> should return 2 because it has 6 total permutations (<code>aab</code>, <code>aab</code>, <code>aba</code>, <code>aba</code>, <code>baa</code>, <code>baa</code>), but only 2 of them (<code>aba</code> and <code>aba</code>) don't have the same letter (in this case <code>a</code>) repeating.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck. Try to pair program. Write your own code.
|
||||
</section>
|
||||
|
||||
## Instructions
|
||||
|
@ -13,7 +13,6 @@ For example <code>pairwise([7, 9, 11, 13, 15], 20)</code> returns <code>6</code>
|
||||
<table class="table"><tr><th><strong>Index</strong></th><th>0</th><th>1</th><th>2</th><th>3</th><th>4</th></tr><tr><td>Value</td><td>7</td><td>9</td><td>11</td><td>13</td><td>15</td></tr></table>
|
||||
Below we'll take their corresponding indices and add them.
|
||||
7 + 13 = 20 → Indices 0 + 3 = 3<br>9 + 11 = 20 → Indices 1 + 2 = 3<br>3 + 3 = 6 → Return <code>6</code>
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck. Try to pair program. Write your own code.
|
||||
</section>
|
||||
|
||||
## Instructions
|
||||
|
@ -14,7 +14,6 @@ Fulfill the below <a href='https://en.wikipedia.org/wiki/User_story' target='_bl
|
||||
<strong>User Story:</strong> For each topic, I can see the title and a list of links to users who have recently posted in it.
|
||||
<strong>User Story:</strong> I can see the number of replies and views that each topic has had, and a timestamp of when the topic was last active.
|
||||
<strong>Hint:</strong> To get the 30 most recent forum posts: <a href='https://buttercup-island.glitch.me/latest' target='_blank'>https://buttercup-island.glitch.me/latest</a>.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it on the freeCodeCamp <a href='https://www.freecodecamp.org/forum/' target='_blank'>forum</a>.
|
||||
</section>
|
||||
|
@ -17,7 +17,6 @@ forumTopicId: 302350
|
||||
<strong>User Story:</strong> I should get a circle of different color on each click.
|
||||
<strong>User Story:</strong> I can click on the 'Reset' button to remove the recent color.
|
||||
<strong>User Story:</strong> I can click on the 'Reset All' button to remove all the colors from the circles.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
@ -15,7 +15,6 @@ forumTopicId: 302353
|
||||
<strong>User Story:</strong> The computer can control the other paddle.
|
||||
<strong>User Story:</strong> The computer's paddle is unbeatable. It should never miss the ball.
|
||||
<strong>User Story:</strong> The game keeps track of the player and computer's score.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
@ -17,7 +17,6 @@ Fulfill the below <a href='https://en.wikipedia.org/wiki/User_story' target='_bl
|
||||
<strong>User Story:</strong> I can delete these recipes.
|
||||
<strong>User Story:</strong> All new recipes I add are saved in my browser's local storage. If I refresh the page, these recipes will still be there.
|
||||
<strong>Hint: </strong> You should prefix your local storage keys on CodePen, i.e. <code>_username_recipes</code>
|
||||
Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/FreeCodeCamp-Get-Help' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
@ -19,7 +19,6 @@ Fulfill the below <a href='https://en.wikipedia.org/wiki/User_story' target='_bl
|
||||
<strong>User Story:</strong> When I fight an enemy, we take turns damaging each other until one of us loses. I do damage based off of my level and my weapon. The enemy does damage based off of its level. Damage is somewhat random within a range.
|
||||
<strong>User Story:</strong> When I find and beat the boss, I win.
|
||||
<strong>User Story:</strong> The game should be challenging, but theoretically winnable.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
@ -19,7 +19,6 @@ Fulfill the below <a href='https://en.wikipedia.org/wiki/User_story' target='_bl
|
||||
<strong>User Story:</strong> I can play in strict mode where if I get a button press wrong, it notifies me that I have done so, and the game restarts at a new random series of button presses.
|
||||
<strong>User Story:</strong> I can win the game by getting a series of 20 steps correct. I am notified of my victory, then the game starts over.
|
||||
<strong>Hint:</strong> Here are mp3s you can use for each button: <code>https://s3.amazonaws.com/freecodecamp/simonSound1.mp3</code>, <code>https://s3.amazonaws.com/freecodecamp/simonSound2.mp3</code>, <code>https://s3.amazonaws.com/freecodecamp/simonSound3.mp3</code>, <code>https://s3.amazonaws.com/freecodecamp/simonSound4.mp3</code>.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
@ -13,7 +13,6 @@ Fulfill the below <a href='https://en.wikipedia.org/wiki/User_story' target='_bl
|
||||
<strong>User Story:</strong> I can play a game of Tic Tac Toe with the computer.
|
||||
<strong>User Story:</strong> My game will reset as soon as it's over so I can play again.
|
||||
<strong>User Story:</strong> I can choose whether I want to play as X or O.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
@ -15,7 +15,6 @@ Fulfill the below <a href='https://en.wikipedia.org/wiki/User_story' target='_bl
|
||||
<span class='text-info'>Hint #1:</span> Here's a URL you can use to get a random Wikipedia article: <code>https://en.wikipedia.org/wiki/Special:Random</code>.
|
||||
<span class='text-info'>Hint #2:</span> Here's an entry on using Wikipedia's API: <code>https://www.mediawiki.org/wiki/API:Main_page</code>.
|
||||
<span class='text-info'>Hint #3:</span> Use this <a href='https://en.wikipedia.org/wiki/Special:ApiSandbox#action=query&titles=Main%20Page&prop=revisions&rvprop=content&format=jsonfm' target='_blank'>link</a> to experiment with Wikipedia's API.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
@ -18,7 +18,6 @@ Fulfill the below <a href='https://en.wikipedia.org/wiki/User_story' target='_bl
|
||||
<strong>User Story:</strong> Each time the board changes, I can see how many generations have gone by.
|
||||
<strong>Hint:</strong> Here's an explanation of Conway's Game of Life from John Conway himself: <a href='https://www.youtube.com/watch?v=E8kUJL04ELA' target='_blank'>https://www.youtube.com/watch?v=E8kUJL04ELA</a>
|
||||
<strong>Hint:</strong> Here's an overview of Conway's Game of Life with rules for your reference: <a href='https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life' target='_blank'>https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life</a>
|
||||
Remember to use <a href='//github.com/FreeCodeCamp/freecodecamp/wiki/FreeCodeCamp-Get-Help' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
@ -14,7 +14,6 @@ Fulfill the following <a href='https://en.wikipedia.org/wiki/User_story' target=
|
||||
<strong>User Story:</strong> I can tell the relative size of the meteorite, just by looking at the way it's represented on the map.
|
||||
<strong>User Story:</strong> I can mouse over the meteorite's data point for additional data.
|
||||
<strong>Hint:</strong> Here's a dataset you can use to build this: <a href='https://raw.githubusercontent.com/freeCodeCamp/ProjectReferenceData/master/meteorite-strike-data.json' target='_blank'>https://raw.githubusercontent.com/freeCodeCamp/ProjectReferenceData/master/meteorite-strike-data.json</a>
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
@ -19,7 +19,6 @@ Fulfill the below <a href='https://en.wikipedia.org/wiki/User_story' target='_bl
|
||||
<strong>User Story:</strong> I can choose to not permit the site to access my microphone and webcam. If I choose not to do this, if some other driver problem occurs, I see an error message saying these are required.
|
||||
<strong>User Story:</strong> When I choose to cancel the room name input step, or if I type in no name, or just spaces, it should again ask me again to type in a valid room name.
|
||||
<strong>User Story:</strong> If one of the two people in the room get disconnected, they can reconnect to the same room and continue chatting.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your Glitch App.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
@ -14,7 +14,6 @@ Fulfill the following <a href='https://en.wikipedia.org/wiki/User_story' target=
|
||||
<strong>User Story:</strong> I can see each country's flag on its node.
|
||||
<strong>Hint:</strong> Here's a dataset you can use to build this: <a href='https://raw.githubusercontent.com/DealPete/forceDirected/master/countries.json' target='_blank'>https://raw.githubusercontent.com/DealPete/forceDirected/master/countries.json</a>
|
||||
<strong>Hint:</strong> You can create a spritesheet of national flags at <a href='https://www.flag-sprites.com' target='_blank'>https://www.flag-sprites.com</a>.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
@ -15,7 +15,6 @@ forumTopicId: 302368
|
||||
<strong>User Story:</strong> I can see a different icon or background image (e.g. snowy mountain, hot desert) depending on the weather.
|
||||
<strong>User Story:</strong> I can push a button to toggle between Fahrenheit and Celsius.
|
||||
<strong>Note:</strong> Many internet browsers now require an HTTP Secure (<code>https://</code>) connection to obtain a user's locale via HTML5 Geolocation. For this reason, we recommend using HTML5 Geolocation to get user location and then use the freeCodeCamp Weather API <a href='https://fcc-weather-api.glitch.me' target='_blank'>https://fcc-weather-api.glitch.me</a> which uses an HTTP Secure connection for the weather. Also, be sure to connect to <a href='https://codepen.io' target='_blank'>CodePen.io</a> via <code>https://</code>.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
@ -16,7 +16,6 @@ Fulfill the below <a href='https://en.wikipedia.org/wiki/User_story' target='_bl
|
||||
<strong>Hint:</strong> The relevant documentation about Twitch.tv's JSON API is here: <a href='https://dev.twitch.tv/docs/api/reference/#get-streams' target='_blank'>https://dev.twitch.tv/docs/api/reference/#get-streams</a>.
|
||||
<strong>Hint:</strong> Here's an array of the Twitch.tv usernames of people who regularly stream: <code>["ESL_SC2", "OgamingSC2", "cretetion", "freecodecamp", "storbeck", "habathcx", "RobotCaleb", "noobs2ninjas"]</code>
|
||||
<strong>UPDATE:</strong> Due to a change in conditions on API usage, Twitch.tv requires an API key, but we've built a workaround. Use <a href='https://wind-bow.glitch.me' target='_blank'>https://wind-bow.glitch.me/helix</a> instead of twitch's API base URL (i.e. https://api.twitch.tv/helix ) and you'll still be able to get account information, without needing to sign up for an API key.
|
||||
Remember to use <a href='https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514' target='_blank'>Read-Search-Ask</a> if you get stuck.
|
||||
When you are finished, click the "I've completed this challenge" button and include a link to your CodePen.
|
||||
You can get feedback on your project by sharing it with your friends on Facebook.
|
||||
</section>
|
||||
|
Reference in New Issue
Block a user