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
| # frozen_string_literal: true | |
| input = <<~END_OF_INPUT | |
| ################################ | |
| ########.####################### | |
| #######..####################### | |
| ######..######################## | |
| ###....####...################## | |
| ###.#..####G..################## | |
| ###G#.G#####..####G############# |
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
| // % de chicas | |
| var PROPORCION = 60; | |
| // % de incremento o decremento de los resultados de las chicas | |
| var DESVIACION = 0; | |
| // Tamaño del bloque | |
| var LARGO_BLOQUE = 5; | |
| var MAX_CHICAS = 3; |