Joao Otavio Cesco Careta público
[search 0]
Mais
Download the App!
show episodes
 
Loading …
show series
 
TRAPTHEFATO tocando no morro TRAPTHEFATO tocando no morro Ele diz que é rapper, mas age igual bitch A água 'tá roxa por causa do lean Maison Margiela no outfit 'Cê sabe, meus mano' não usa Besni Fumando maconha na frente dos cara' É nós que manda de fato na city .223 deixei guardada Eu tenho meus mano' que mata por mim Menorzin' de 12 'tá com o por…
  continue reading
 
A dictionary is a mapping where each key is mapped to a single value. If you want to map keys to multiple values, you need to store the multiple values in another container such as a list or set; To easily construct such dictionaries, you can use defaultdict in the collections module. A feature of defaultdict is that it automatically initializes th…
  continue reading
 
#AQUI EU CRIO DOIS FOR, PORQUE EU PRECISO ANALISAR ITEM POR ITEM DA MATRIZ QUE FOI CRIADA; def verifica_virgula_todo(self, nome_arquivo): linhas_virgula = [] for i in range(0, len(self._dados)): for n in range(0, len(self._dados[i])): if ("," in self._dados[i][n]): # CASO TENHA ENTRADAS VALIDAS, EU ADICIONO O VALOR EM QUE i ESTÁ + 1, EM UM ARRAY; #…
  continue reading
 
Preciso estudar código, sem criatividade para descrição; void insertAfter(Node* previous, int value) // logo, eu preciso ser um ponteiro de um ponteiro. { //1. verificar se previous não é NULL; if(previous == NULL) { cout << "Previous can not be NULL"; return; } //2. Preparar o novo Node; Node* newNode = new Node(); newNode->Data = value; //3. Inse…
  continue reading
 
int main () { std::vector nums = {1}; int val = 0; int pos = 0; bool check = false; auto i = nums.begin(); while (i !=nums.end()) { if((*i) != val) { i++; pos++; } else { check = true; break; } } if (!check) { pos = 0; auto j = nums.begin(); while (j != nums.end()) { if (val > (*j)) { j++; pos++; } else { check = true; break; } } } cout << pos…
  continue reading
 
Loading …

Guia rápido de referências