array tag

224 questions


1 answers
64 views
0
C Language Array Add Delete Navigation Question.

Let's set the size of the array at 100,000 Use the insert function in the main window The error window appears without entering the number.Please catch the wrong part of the insert function that I def...

2 years ago

1 answers
38 views
0
After using the Python extend function, an array mark appears in the list

We created a list and wrote an extend() function that adds up the other lists in it. But the variable has the expression array().For example, if you specify k=[] and a=[1,2],[2,3],[4,5],[6,7] are adde...

2 years ago

1 answers
116 views
0
How do we determine if a particular value exists in an array?

Let's say we have an array of String[] with the following values.public static final String[] VALUES = new String[] {AB,BC,CD,AE};Given the strings, is there a good way to check if s is present in the...

2 years ago

1 answers
44 views
0
I want to know how to store a string as a C array element

I want to create a two-dimensional array and store strings in each element.My code prints well, but it alerts me when I compile it.How do I create an array without warning?char (*a[2])[14];a[0]=blah;a...

2 years ago

2 answers
45 views
0
Does the maximum value of the array size exist?

Debugging the following code causes stack overflow. By any chance, does a static array have the maximum size of the array that can be declared?void main(){ int StaticDoubleArray1[2500][2500] = { 0 };}

2 years ago

1 answers
39 views
0
How do I make a two-dimensional array in JavaScript?

No matter how much I search the Internet, there is no word on two-dimensional arrangementHow do I make a two-dimensional array in JavaScript?And how do you approach a member? (myArray[0][1] or myArray...

2 years ago

1 answers
41 views
0
How to Empty an Array in JavaScript

Will JavaScript Empty Array? Is it possible with .remove()?

2 years ago

1 answers
47 views
0
Why are array names and array addresses the same?

The array name and the array address were the sameI made the pointer point to the array and printed out the pointer address, and it came out differently.Array name = array address Pointer value! = Poi...

2 years ago

0 answers
43 views
0
Reposition specific words within a Python array

It's Python version 3.I want to change the position when I repeat the arrangement and see a specific word.Array example:[I'm, I'm a fool, Because, I don't know] [I'm a fool, You, I don't know]In case ...

2 years ago

1 answers
47 views
0
How do I store various types in the C array?

In Python, mylist = [hello, 3, {3:5, 2:4}]print(mylist)I was able to put various types in one list like this wayIs there a way to use it like this in C?

2 years ago
« - 12 - »

© 2024 OneMinuteCode. All rights reserved.