This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="moon"></div> | |
| <div class="moon__crater moon__crater1"></div> | |
| <div class="moon__crater moon__crater2"></div> | |
| <div class="moon__crater moon__crater3"></div> | |
| <div class="star star1"></div> | |
| <div class="star star2"></div> | |
| <div class="star star3"></div> | |
| <div class="star star4"></div> | |
| <div class="star star5"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using Xunit; | |
| public class GameTest | |
| { | |
| private Random random; | |
| public GameTest() | |
| { | |
| random = new(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public Score getScore(int offset) | |
| { | |
| foreach(GameStamp stamp in this.gameStamps) | |
| if (stamp.offset == offset) | |
| return new Score(stamp.score.home, stamp.score.away); | |
| return new Score(0, 0) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| List users. Empty balances. | |
| { | |
| "name": "boris", | |
| "amount": "0" | |
| } | |
| { | |
| "name": "maria", | |
| "amount": "0" | |
| } | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # books | |
| Книги и статьи, которые я сам читаю/прочел и могу их советовать. | |
| ⚠️НИКАКОЙ ХУДОЖЕСТВЕННОЙ ЛИТЕРАТУРЫ⚠️ | |
| Зорич "Математический Анализ" | |
| Читать онлайн: https://bookree.org/reader?file=663421&pg=207 | |
| Как Создать динамическое имя переменной: | |
| Читать: https://askdev.ru/q/kak-dinamicheski-nazyvat-peremennye-v-c-367634/ |