Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| Rua,Bairro,Cidade,Metragem,Quartos,Banheiros,Vagas,Valor | |
| "Avenida Itacira, 255 ",Planalto Paulista,São Paulo,1000,4,8,6,R$ 7.000.000 | |
| "Rua Aurelia Perez Alvarez, 42 ",Jardim dos Estados,São Paulo,496,4,4,4,R$ 3.700.000 | |
| Rua Alba Valdez,Jardim Reimberg,São Paulo,125,4,3,2,R$ 380.000 | |
| ,Jardim Morumbi,São Paulo,310,3,2,4,R$ 685.000 | |
| "Rua Tobias Barreto, 195 ",Mooca,São Paulo,100,3,2,2,R$ 540.000 | |
| Rua Graham Bell,Santo Amaro,São Paulo,440,4,4,6,R$ 1.980.000 | |
| "Rua Francisco Paulo, 31 ",Cidade Mãe do Céu,São Paulo,145,4,4,2,R$ 850.000 | |
| "Rua Guilherme Valente, 150 ",Jardim Vergueiro,São Paulo,150,2,2,2,R$ 450.000 | |
| "Rua Sagrada Família, 8 ",Jardim Benfica,São Paulo,48,2,1,1,R$ 199.900 |
| ##### Windows | |
| # Windows thumbnail cache files | |
| Thumbs.db | |
| Thumbs.db:encryptable | |
| ehthumbs.db | |
| ehthumbs_vista.db | |
| # Dump file | |
| *.stackdump |
| # http://editorconfig.org | |
| root = true | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| insert_final_newline = true | |
| trim_trailing_whitespace = true |
The book Java Generics and Collections has this information (pages: 188, 211, 222, 240).
List implementations:
get add contains next remove(0) iterator.remove
ArrayList O(1) O(1) O(n) O(1) O(n) O(n)
LinkedList O(n) O(1) O(n) O(1) O(1) O(1)
Olá, vamos para algumas dicas de como contribuir com opensource!
O pessoal do GitHub tem um guia que ensina o GitHub flow, https://guides.github.com/introduction/flow/. A base que ele nos ensina é: