0
votes
3answers
32 views
Java: Finding the highest value in an array
For some reason this code is printing three values for the highest value in the array when I'm trying to print just one (which is 11.3). Can someone please explain to me why it is …
0
votes
1answer
14 views
iPhone Development xcode : Putting user input (names) into text array
I am trying to load names in an array using UIAlert and then print them one by one. I can not figure this out can anyone help me with this. I would really your help apprecaite
2
votes
4answers
58 views
C# Extend array type to overload operators
Hi,
I'd like to create my own class extending array of ints. Is that possible? What I need is array of ints that can be added by "+" operator to another array (each element added t …
-2
votes
4answers
147 views
To understand: From PHP Array to Python ?
This is Common task In PHP and other programming languages.I moved from PHP developer.
I want to make sure with this collections.
Anyone have who good in python please help me to u …
1
vote
4answers
58 views
Can you say that associative arrays in PHP are like 2D arrays?
Can you say that associative arrays in PHP are like 2D arrays?
0
votes
4answers
42 views
RoR / Ruby delete nil elements from nested array
in a previous question i asked how to split an array into two equal pieces in ruby on rails. this is how i did it:
>> a = [1,2,3,4,5]
=> [1, 2, 3, 4, 5]
>> a.in_gro …
0
votes
2answers
76 views
C - Dynamically initializing arrays.
I'm trying to find the equivalent of int myArray[n], except I don't know what n is without input.
Is the following code supposed to work? (I need to use kmalloc instead of malloc) …
7
votes
6answers
241 views
In JavaScript, why is [ ] preferred over new Array(); ?
I remember reading somewhere (I think it was in one of Crockford's papers) that using an array literal [] is better than using the new Array(); notation.
But I can't really rememb …
2
votes
7answers
118 views
Comparing character arrays with an == operator in C
I know that the correct way to compare "strings" in C is by using strcmp, but now I tried comparing some character arrays with the == operator, and got some strange results.
Take …
2
votes
1answer
26 views
Json.NET: serializing/deserializing arrays
I'm using a Json.NET library. What's the most convenient way of serializing/deserializing arrays in JSON via C#? For example, I'm trying to deserialize the following text (reading …
5
votes
6answers
233 views
In Perl, is there a built in way to compare two arrays for equality?
I have two arrays of strings that I would like to compare for equality:
my @array1 = ("part1", "part2", "part3", "part4");
my @array2 = ("part1", "PART2", "part3", "part4");
Is …
0
votes
2answers
31 views
CUDA - Better Occupancy vs Less Global Memory Access?
Hey
My CUDA code must work with (reduce to mean/std, calculate histogram) 4 arrays, each 2048 floats long and already stored in the device memory from previous kernels.
It is gen …
0
votes
2answers
73 views
PHP - Dealing with GET and POST arrays
In my webapp I have a page called display.php. The script in this page behaves in different ways depending on POST and GET array content/existence, let's say: If I call this page a …
0
votes
1answer
18 views
rails find - condition on array of db-fields
I am stuck and I guess it is a syntax thing I just don't get:
It's a one(category)_to_many(product) relationship.
In my category model I have the columns pick1, pick2, pick3, pic …
1
vote
6answers
113 views
Subset of Array in C#
If I have an array with 12 elements and I want a new array with that drops the first and 12th elements. For example, if my array looks like this:
__ __ __ __ __ __ __ __ __ __ __ …
