Submission
Structure
Code

Code

In this page you will go through the structure and most important features of this repository. It is ideal that you become familiar with its structure before you start trying to post solutions, as it is big and you might feel lost.

The code solutions are stored in the following way in the repository:

Structure

Folder to store programming challenges.

    <site> (directory)
    └── <challenge-id> (directory)
      ├── <gitlab-username.ext> (solution file)
      └── <gitlab-username.yml> (YAML file)

Example

        • friendglak.dart
        • friendglak.yml
  • Rules

    • The naming of all files and folders, must not exceed 35 characters, written in lowercase, without any special characters and in case a white space needed use a - (dash) to replace it.

    Files

    Some of the folders described in the structure contain special files:

    • LINK.lst: Contains the challenge URL. This file must only have one line with the challenge link and it must give an HTTP 200 response when visiting it (No redirection).

    • DATA.lst: Contains the test cases with which the challenge was validated. This file should only contain test cases that are immediately processable by any solution file.

    • OTHERS.lst: It contains the links to the external solutions found on the Internet for that challenge. They must not be read or used as a reference to solve the challenge. This file allows an automatic script to perform a similarity analysis with the challenges sent by the candidates.