freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/take-home-projects/show-national-contiguity-wi...

39 lines
2.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: bd7198d8c242eddfaeb5bd13
title: Show National Contiguity with a Force Directed Graph
isRequired: false
challengeType: 3
videoUrl: ''
localeTitle: Показать национальную смежность с диаграммой направленности силы
---
## Description
<section id="description"> <strong>Цель:</strong> создать приложение <a href="https://codepen.io" target="_blank">CodePen.io</a> , функционально похожее на это: <a href="https://codepen.io/freeCodeCamp/full/xVopBo" target="_blank">https://codepen.io/freeCodeCamp/full/xVopBo</a> . Выполняйте следующие <a href="https://en.wikipedia.org/wiki/User_story" target="_blank">истории пользователей</a> . Используйте любые библиотеки или API, которые вам нужны. Дайте ему свой личный стиль. <strong>User Story:</strong> Я вижу график, ориентированный на Force, который показывает, какие страны разделяют границы. <strong>User Story:</strong> Я могу видеть флаг каждой страны на своем узле. <strong>Подсказка:</strong> вот набор данных, который вы можете использовать для его создания: <a href="https://raw.githubusercontent.com/DealPete/forceDirected/master/countries.json" target="_blank">https://raw.githubusercontent.com/DealPete/forceDirected/master/countries.json.</a> <strong>Совет.</strong> Вы можете создать спрайт национальных флагов по адресу <a href="https://www.flag-sprites.com" target="_blank">https: //www.flag- sprites.com</a> . Не забудьте использовать <a href="http://forum.freecodecamp.org/t/how-to-get-help-when-you-are-stuck/19514" target="_blank">Read-Search-Ask,</a> если вы застряли. Когда вы закончите, нажмите кнопку «Я закончил эту задачу» и включите ссылку на вашу CodePen. Вы можете получить отзывы о своем проекте, поделившись с друзьями на Facebook. </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests: []
```
</section>
## Challenge Seed
<section id='challengeSeed'>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>