Skip to content

Instantly share code, notes, and snippets.

View deboraazevedo's full-sized avatar

Débora Azevedo deboraazevedo

View GitHub Profile

Keybase proof

I hereby claim:

  • I am deboraazevedo on github.
  • I am deboraazevedo (https://keybase.io/deboraazevedo) on keybase.
  • I have a public key ASCnRwqZGPpEW0bHqeLulIr6oGUWyDNObLqC6N30tywy5wo

To claim this, I am signing this object:

@deboraazevedo
deboraazevedo / wordslist.py
Created June 22, 2019 18:01
tenta pegar uma palavra e dizer de qual sublista a palavra é
list_a = ['father', 'arm', 'heart', 'wasp', 'lager']
list_e = ['less', 'weather', 'egg', 'bread', 'tell']
list_i = ['tree', 'beach', 'feet', 'eat', 'police']
list_o = ['all', 'fought', 'hot', 'lot', 'bot']
list_u = ['boot', 'cool', 'tune', 'soup', 'true']
list_uu = ['bus', 'blood', 'up', 'come', 'sun', 'son']
words_list = [list_a, list_e, list_i, list_o, list_u, list_uu]
word = input("Diga uma palavra: ")
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica$ cd Listas\ duplamente\ encadeadas\ com\ sentinelas/
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica/Listas duplamente encadeadas com sentinelas$ ls
Lista.cpp Lista.h main.cpp TesteLista.cpp TesteLista.h
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica/Listas duplamente encadeadas com sentinelas$ git add Lista.cpp Lista.h main.cpp TesteLista.cpp TesteLista.h
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica/Listas duplamente encadeadas com sentinelas$ git status
On branch master
Initial commit
Changes to be committed:
debora@debora-Inspiron-3442:~/EstruturaDeDadosBasica/Listas duplamente encadeadas com sentinelas$ git push
fatal: No configured push destination.
Either specify the URL from the command-line or configure a remote repository using
git remote add <name> <url>
and then push using the remote name
git push <name>
#!/usr/bin/python
# -*- coding: utf-8 -*-
from django.shortcuts import render
from django.http import HttpResponse
from historicos.models import Usuario, Historico