This file contains 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
function push(new_state, states) { | |
if (states === null) { | |
return {keep: 0, life: 0, state: new_state, older: null}; | |
} else { | |
var {keep, life, state, older} = states; | |
if (keep === 0) { | |
return {keep: 1, life, state, older}; | |
} else { | |
if (life > 0) { | |
return {keep: 0, life: 0, state: new_state, older: {keep: 0, life: life - 1, state, older}}; |
This file contains 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
ACADEMIA DA FORÇA AÉREA | AFA | SP | |
---|---|---|---|
ACADEMIA DA POLÍCIA CIVIL DO ESTADO DA BAHIA | ACADEPOL | BA | |
ACADEMIA DE POLÍCIA MILITAR DO BARRO BRANCO | APMBB | SP | |
ACADEMIA DE POLÍCIA MILITAR DOM JOÃO VI | APMDJVI | RJ | |
ACADEMIA DE POLÍCIA MILITAR | APM | BA | |
ACADEMIA MILITAR DE AGULHAS NEGRAS | AMAN | RJ | |
ANHANGUERA EDUCACIONAL S.A. | UNIANHANGUERA | RS | |
ANHANGUERA EDUCACIONAL | AESA | SP | |
ASSOCIAÇÃO CATARINENSE DE ENSINO | ACE | SC | |
ASSOCIAÇÃO DE ENSINO SUPERIOR DO PIAUÍ | AESPI | PI |
NewerOlder