array tag

224 questions


2 answers
324 views
0
array duplication check

We have created a program that checks for duplicate registrants and asks for the average age, and the current situation is as follows:The average age is required, but it doesn't seem to be able to che...

1 years ago

1 answers
265 views
0
I want you to read the JSON file containing the hierarchical structure.

I tried to load the json file by incorporating picojson into VisualStudio 2012 C++, but I was not able to load the json file successfully.(The data I want most is multiple two-dimensional arrays in th...


1 answers
277 views
0
I want to make eight shapes (6,1) data in python 3 in the form (8,6)

Could someone tell me how to convert 8 Shape (6,1) data into (8,6) data?For example print(A.shape) is (6, 1)(6, 1)(6, 1)(6, 1)(6, 1)(6, 1)(6, 1)(6, 1)to becomeprint(B.shape)(8,6)I'd like to do somethi...

1 years ago

1 answers
104 views
0
a program that uses an array as a pointer and a pointer as a register in C language

You are creating a program that randomly generates numbers within a specified range and places them in order of lowest in select_sort.I was able to program an array, but I don't know how to make it in...

1 years ago

2 answers
61 views
0
Different sequences disappear in python sequences

values=[0, 1, 2, 3, 4 ]num = [a, b, c, d, e ]num_tmp = [ ]num_tmp = numfor value in values: num = num_tmp print(num) print(num_tmp) num.clear()In the above case, the value is num=[a, b, c, d, e], but ...

1 years ago

2 answers
115 views
0
I want to split the two-dimensional array.

I would like to divide the 102×102 matrix into 17×17 matrices.The 102 matrix has the number of the matrix, so When I read it, I changed it from Dataframe to an array.I was able to read the 102 matrix,...

1 years ago

5 answers
63 views
0
I want to find common elements among ascending arrays without duplication of their own elements.

I have a question about C language.There are two arrays A, B, each storing an integer, the number in the array is sorted in ascending order, and there are no overlapping numbers in the array A, which ...

1 years ago

1 answers
103 views
0
I want to find a specific element in the 2D list and display its location.

2d_array=[0,0,0],[0,0,1],[0,0,0],[0,0,0]]I would like to print the final result '(1,2)' from the list like above.As a trial, I made a separate list, added each element to the array above, and then loo...

1 years ago

1 answers
84 views
0
What kind of php array do you use like $ver[numerical]->code name?

このThis code is an error and cannot be used.I'm not sure, but isn't there an array of php defined and used as below?I don't think it's a multidimensional array or an associative array.[Definition Metho...

1 years ago

3 answers
106 views
0
Python 3 Array Operations I want to create an array of specified indexes.

Let me ask you a question about Python 3 array operations.I want to create an array of the specified indexes, but I don't know what to do.I'd like to create an array B that consists of the third, sixt...

1 years ago
« - 2 - »

© 2024 OneMinuteCode. All rights reserved.