array tag

224 questions


1 answers
135 views
0
java Array Form Creation Question

Data typeArrayList Map String,Object Result value [0] date = 2019-08-0100:00:00, work : work, department : username : potato >[1] date = 2019-08-0100:00:00, work : work , department : username : sw...

2 years ago

2 answers
128 views
0
While solving the problem using the array pointer, I had a question

#include<stdio.h>void rotate(int(*ptr)[4]){ int i,j; int temp[4][4]; for(i=0;i<4;i++) { for(j=0;j<4;j++) { temp[i][j]=ptr[3-j][i]; } } for(i=0;i<4;i++) { for(j=0;j<4;j++) { pt...


1 answers
96 views
0
JSON encoding problem output from PHP

I am a high school student who is currently developing a KakaoTalk meal chatbot.NEIS creates a JSON file (meal.json) through a PHP file (test.php) that parses meal tables, and this file is another PHP...

2 years ago

1 answers
126 views
0
I want to know how to declare a pointer

Can anyone explain how the following three methods of declaring a pointer are different?


1 answers
38 views
0
This is a question about how to determine what values are in the array

I'm just learning rubies and want to check if there are specific values in the array.For example, [1,2,3,4,5] has 3 but not 6.In other languages, I used to find things like find and index, but I think...

2 years ago

1 answers
110 views
0
Data search question in C language binary search.

#include<stdio.h>#include<stdlib.h>int idxsearch(int ar[], int first, int last, int target) { int mid = (first + last) / 2; if (first > last) return -1; else { if (ar[mid] == target) ...


1 answers
125 views
0
Can I change InputStream to Byte array?

Can I change InputStream to Byte array?

2 years ago

1 answers
115 views
0
How do I create a query that I search for when the input value is an array in Rails Active record?

As the title suggests, when importing a value from DB, the input value is an array. Unfortunately, it would be nice if the DB column corresponds 1:1 with each value in the array, but it is not.In DB, ...


1 answers
120 views
0
Python numpy gen from txt question

You are currently performing an operation to read the txt file to Python numpy. Other data are neatly gathered (second image), while only certain data (first image) are like this, so I'm having troubl...


1 answers
43 views
0
« - 18 - »

© 2024 OneMinuteCode. All rights reserved.