Browse Source

Merge pull request #521 from 01-edu/time-limit

adding time-limit on tetris-optimizer
content-update
OGordoo 4 years ago committed by GitHub
parent
commit
600703aebd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      subjects/good-practices.en.md
  2. 4
      subjects/lem-in/lem-in.audit.en.md
  3. 6
      subjects/tetris-optimizer/tetris-optimizer.audit.en.md
  4. 2
      subjects/tetris-optimizer/tetris-optimizer.en.md

4
subjects/good-practices.en.md

@ -35,3 +35,7 @@
### Dockerfile
- [**Dockerfile**](https://docs.docker.com/develop/develop-images/dockerfile_best-practices/)
### Time Limitation
- Every computing programs should execute in a time limit of 5 minutes.

4
subjects/lem-in/lem-in.audit.en.md

@ -295,11 +295,11 @@ student$
##### Try running the program with example06.txt and with 100 ants.
###### Is the real time less than 0.5 seconds?
###### Is the real time less than 1.5 minutes?
##### Try running the program with example07.txt and with 1000 ants.
###### Is the real time less than 1.5 seconds?
###### Is the real time less than 2.5 minutes?
##### Try running the program with a valid example of your choice.

6
subjects/tetris-optimizer/tetris-optimizer.audit.en.md

@ -48,15 +48,15 @@
##### Try good example 02 (https://public.01-edu.org/subjects/tetris-optimizer/goodexample02).
###### Does the result contain 4 empty spaces (4 '.')?
###### Does the result contain 4 empty spaces (4 '.') and a time limit lesser or equal to the one in the [good practices](https://public.01-edu.org/subjects/good-practices.en)?
##### Try good example 03 (https://public.01-edu.org/subjects/tetris-optimizer/goodexample03).
###### Does the result contain 5 empty spaces (5 '.')?
###### Does the result contain 5 empty spaces (5 '.') and a time limit lesser or equal to the one in the [good practices](https://public.01-edu.org/subjects/good-practices.en)?
##### Try hard example (https://public.01-edu.org/subjects/tetris-optimizer/hardexam).
###### Does the result contain 1 empty spaces (1 '.')?
###### Does the result contain 1 empty spaces (1 '.') and a time limit lesser or equal to the one in the [good practices](https://public.01-edu.org/subjects/good-practices.en)?
###### Are all of the Tetrominos contained in the test file, present in the output?

2
subjects/tetris-optimizer/tetris-optimizer.en.md

@ -35,7 +35,7 @@ The program must :
..##
```
- If it isn't possible to form a complete square, the program should leave spaces between the tetrominoes. For example:
- If it isn't possible to form a complete square, the program should leave spaces between the tetrominoes. For example:
```console
ABB.

Loading…
Cancel
Save