Posts by Caio Sousa • 77 points
7 posts
-
1
votes1
answer987
viewsQ: Grab each row of a CSV file
I need to take data from a CSV file and store it in an array. Example: CAIO ; 0909;abacaxi BRUNO;1231;maça I have to take for example row 1, and each value of each column store in a variable to play…
-
1
votes1
answer508
viewsQ: JAVA POO - How to call a function from a Class
So I have the following problem , I created a 30x60 matrix in which I will generate a number in a random position, so far so good. But when I took the function that generates the number and put it…
-
1
votes2
answers362
viewsQ: POO JAVA - Doubt Exercise
Good first follows down the exercise: Create a class called Date including three parts of information as instance variables: one mês (tipo int), one dia (tipo int) and a ano (tipo int). Provide a…
-
0
votes2
answers319
viewsQ: I can’t connect Mongodb to Node
I’m trying to make a page on which will have a written form Nome and Comentário, when the person fills in the name and the comment will appear under the form. Only that is giving error. Down here is…
-
0
votes2
answers1459
viewsQ: Delete and Query Python function
I have to make a simple program in Python. In the case of a library , however I’m having difficulties in the function of consulting and deleting. I honestly stalled, tried a lot of different ways…
-
1
votes4
answers8205
viewsQ: How to get the highest value of a python array / vector?
how do I get the highest value of a matrix or vector? For example, in this exercise I have to make a 4x4 matrix and return to row and column of the largest element, but I stopped there. m = [] for i…
-
0
votes4
answers457
viewsQ: 4x4 matrix with 20 elements
Galera made a code in Python whose exercise asked to make a 4x4 matrix , show the amount of elements larger than 10 and show the final matrix. I did and everything was fine only that the matrix ta…