I'm getting this string in Java:
Respuesta1_10|Respuesta2_50|Respuesta4_90|Respuesta5_33
And I need to build two groups of values with it dynamically, since the amount of values separated by | is not fixed. The groups of values would...
I have made a code in which I indicate the amount of values that my arrangement will have, it introduces them well but then it does not visualize anything to me. I do not know where the fault is, I think I'm giving back something wrong.
Code:...
I'm doing a code to try to convert some data into a table.
Specifically, I have the data in 3 arrays with the following form:
Survey [ age , name_of_periodico ]
Interval
[ First_number_of_interval (the number
minor), Second_numero_...
I have a char pointer with numbers , which would be:
puntero = [1,2,4,5,\n,2,3,\n,5,2,1];
How can I make the following?:
nuevo = [1245,\n,23,\n,521]; , \n is a line break, it's just to represent it.
I have t...
Algorithm
At the beginning the array is of length = 0. Then, in each iteration, when trying to enter an element, the array becomes of length + 1; then, said element occupies the position length-1.
Goal
That an element is entered int...
I am creating an associative array through php after doing a data validation, this code is to make the "fullcalendar" library work. However, at the end of that validation I need to do a second validation to add another index, but for some reason...
I have to create an array in PHP with information that comes from a json.
Currently I have my code that creates an array where it keeps the date "10-15-2018" with its total number of messages.
Now I need to modify my array to be able to ca...
I am programming a genetic algortimo so that this solves problems of linear programming, I am using C language, when calculating the limit of the variables I keep the values in a float type array, I need to order that array but it erases a data...
The code below works as it should, in case anyone wants to use it, I thank all those who commented
Giving linear algebra are teaching me operations with vectors and to simplify my life I wanted to make a code for this, I am not very profi...