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
| import 'dart:math'; | |
| String generateBrandName() { | |
| final rng = Random(); | |
| final name = 'JeanAkulloCoprise'; | |
| final brandName = name[rng.nextInt(name.length)] + | |
| name[rng.nextInt(name.length)] + | |
| name[rng.nextInt(name.length)] + | |
| name[rng.nextInt(name.length)] + |
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; | |
| namespace ObjectApp1 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| var S = new Solution(); | |
| Console.WriteLine(S.solution(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
| <video autoplay loop muted poster="screenshot.jpg" id="background"> | |
| <source type="video/mp4" src="https://staging.coverr.co/s3/mp4/Boxing-gym.mp4"> | |
| <source type="video/webm" src="https://staging.coverr.co/s3/webm/Boxing-gym.webm"> | |
| </video> | |
| <div class="main"> | |
| <div id='content'> | |
| <div class='title'> | |
| <span>FITNESS ZONE</span> | |
| </div> | |
| <p>coming soon</p> |
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
| REMIX EXAMPLE PROJECT | |
| Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer. | |
| It contains 3 directories: | |
| 1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name. | |
| 2. 'scripts': Holds two scripts to deploy a contract. It is explained below. | |
| 3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity. | |
| SCRIPTS |
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
| REMIX EXAMPLE PROJECT | |
| Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer. | |
| It contains 3 directories: | |
| 1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name. | |
| 2. 'scripts': Holds two scripts to deploy a contract. It is explained below. | |
| 3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity. | |
| SCRIPTS |