0
votes
4answers
66 views
Reading files and deleting repeated letters
Hello! So my goal is to make a function that has a partially filled array of characters as a formal parameter and deletes all repeated letters from the array. So I just need to rea …
0
votes
3answers
39 views
Parsing every element of an array as an integer
I have a string which I need to split into an array and then perform mathematical functions on each element of the array.
Currently I am doing something like this. (Actually, I am …
0
votes
3answers
49 views
javascript object arrays
I need to migrate a code in java to javascript.
In java, I am maintaining a hashmap with key = string and value = arraylist of objects
I need to implement the same in javascript:
…
3
votes
5answers
76 views
How to store int[] array in application Settings
Hi, I'm creating a simple windows Forms application using C# express 2008. I'm an experienced C++ developer, but I am pretty much brand new to C# and .NET.
I'm currently storing s …
0
votes
4answers
38 views
How to write a single dimension array to a file in php a.k.a. file_put_contents vs fopen+fwrite
Data: $data = array('Alice', 'Bob', 'Carol', 'David', 'Elizabeth', 'Frank');
Method A:
file_put_contents('filename.ext', implode("\n", $data) );
Method 2:
$fp = fopen('f …
2
votes
3answers
123 views
Conditional counting in Python
Hello there,
not sure this was asked before, but I couldn't find an obvious answer. I'm trying to count the number of elements in a list that are equal to a certain value. The pro …
0
votes
6answers
36 views
C# Building An Array with Button Entries.
I have a set of buttons that I want to add into an array so that they are ordered. The buttons I have are:
Monday0700Button
Monday0730Button
Monday0800Button
Monday0830Button
an …
1
vote
3answers
73 views
How to get the length of longest string in an array
Say I have this array:
$array[] = 'foo';
$array[] = 'apple';
$array[] = '1234567890;
I want to get the length of the longest string in this array. In this case the longest strin …
1
vote
4answers
124 views
C++, Can’t use an array or vectors, how do I use a pointer to get through this mess?
I need help with pointers and memory management.
I need to store different objects, all derived from the same base class, and have been using an array to do this but it is causing …
0
votes
4answers
42 views
How to merge duplicates in 2D python arrays
Hi, I have a set of data similar to this:
No Start Time End Time CallType Info
1 13:14:37.236 13:14:53.700 Ping1 RTT(Avr):160ms
2 13:14:58.955 13:15:29.984 Ping2 RTT(Avr):40ms
…
1
vote
3answers
41 views
PHP - Getting limited chunks of a large array from MySQL table
Let's say you've got a table like this:
ID Cat1 Cat2
1 a red
2 b red
3 c blue
4 d blue
5 e blue
6 f green
etc etc etc
The goal is …
0
votes
5answers
62 views
Problem with exceptions and arrays
Can't really understand what's going wrong here?
It's just a simple exception with an array out of bounds.
public class Days
{
public static void main (String args[])
{
…
0
votes
4answers
39 views
bad_alloc exception when trying to print the values
I've debugged my other problem back, to the MyMesh constructor. In this code:
if (hollow) {
numTriangles = n*8;
triangles=new MyTriangle[numTriangles];
if (smooth) num …
1
vote
1answer
42 views
jquery json multidimensional array lengths
I'm using a jQuery ajax json call to retrieve a 3 dimensional PHP array into Javascript.
the PHP array looks like this:
$rate[0][1]['name'] = 'guff';
$rate[0][1]['value'] …
3
votes
3answers
98 views
Testing if the element is an array, in Javascript
To check if an element is an array in JavaScript, I have always used Crockford's function (pg 61 of The Good Parts):
var is_array = function (value) {
return value &&
…
