We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 4.
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
references,question,correctAnswer,alternativeA,alternativeB,alternativeC,alternativeD,level | |
"(1) Galinhada tradicional: aprenda a fazer a receita clássica. https://guiadacozinha.com.br/receitas/galinhada-tradicional/. | |
(2) Galinhada – Wikipédia, a enciclopédia livre. https://pt.wikipedia.org/wiki/Galinhada. | |
","Qual é o ingrediente que dá cor à “Galinhada”, prato típico de origem bandeirante?",A,Açafrão,Pimenta-do-reino,Cebola,Alho,1 | |
"(1) Maniçoba: origem, ingredientes e tempo de preparo. https://www.mundoboaforma.com.br/manicoba-origem-ingredientes-e-tempo-de-preparo/. | |
(2) Maniçoba é um prato de origem indígena e comum na ... - Agro20. https://www.agro20.com.br/manicoba/. | |
","Qual é o ingrediente principal da “Maniçoba”, prato típico amazônico?",B,Peixe,Mandioca brava,Carne de sol,Tucumã,1 | |
"(1) 12 comidas típicas do Nordeste para você provar em sua viagem. https://www.melhoresdestinos.com.br/comidas-tipicas-nordeste.html. | |
(2) Comida típica de Pernambuco: prove 22 pratos deliciosos. https://www.fuiserviajante.c |
This file has been truncated, but you can view the full file.
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
{ | |
"type": "FeatureCollection", | |
"features": [ |
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
Sigla;Estado;Populacao;PIB | |
AC;Acre;732.793;8.477.000 | |
AL;Alagoas;3.120.922;24.575.000 | |
AP;Amap�;668.689;8.266.000 | |
AM;Amazonas;3.480.937;59.779.000 | |
BA;Bahia;14.021.432;154.340.000 | |
CE;Ceara;8.448.055;77.865.000 | |
DF;Distrito Federal;2.562.963;149.906.000 | |
ES;Esp�rito Santo;3.512.672;82.122.000 | |
GO;Goi�s;6.004.045;97.576.000 |
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
class Node(): | |
def __init__(self, key): | |
self._p = None | |
self._right = None | |
self._key = key | |
self._left = None | |
def get_key(self): | |
return self._key |
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
class Node(): | |
def __init__(self, key, cor): | |
self._p = None | |
self._right = None | |
self._key = key | |
self._left = None | |
self._cor = cor | |
def get_cor(self): | |
return self._cor |