Posts by Matheus Vinícius de Andrade • 176 points
5 posts
-
2
votes1
answer166
viewsQ: Lambda function for Dict Dict - Python
I would like to know if there is the possibility of using the filter with a function lambda to select a conjunto de dados of a array de J SON in the Python. Example: I have the following JSON…
-
3
votes3
answers98
viewsA: Doubt in my code is not printing correctly
As said before, you have to be careful about the types you are dealing with in your containers. I made another implementation to generate the expected result for you. I removed the names, and…
pythonanswered Matheus Vinícius de Andrade 176 -
1
votes1
answer96
viewsQ: Values with different types Gson - Java
I wonder, if there is a way with Gson to get values of different types in a "key-value" array in Json. Follow the example: { "events":[ {"event":"comprou-produto",…
-
0
votes1
answer168
viewsQ: Codeigniter does not present its Welcome screen
I started learning codeigniter a few days ago and I have the following problem: I did the correct installation of LAMP and of Codeigniter /var/www/html/codeigniter But when I try to access the page…
-
0
votes1
answer455
viewsQ: Operator overload ==
bool Stock::operator== (const Stock& stk){ if ( this->get_resource() == (stk.get_resource()) ) return true; else return false; } I created this method to overload the operations of a class,…