1
vote
2answers
64 views

Php code fails to give corrent result most likely logic error

I have been racking my brain on this problem for the last few days and for the life of me can seem to find the issue code. Essentially this code generates a random amount of objects with an x and y ...
0
votes
2answers
107 views

Live search engine logic behind query

I have problems creating a multiple field live search engine using AJAX and PHP. Up to now there was no need to search for multiple fields, so I had a simple query that worked fine for only one ...
0
votes
4answers
280 views

Simple Array Finding Index Position of Highest and Lowest Value

I am trying to write a simple logical program to find the highest and lowest values, which has already been done. The issue is how to find the index position is when it finds the highest and lowest ...
1
vote
2answers
61 views

A little missunderstanding with array in knockout.js

I'm trying to understand some logic process of knockout js and I hope u can help me with that. There are may be a realy primitive questions, but in that case they are will similar to my understanding ...
0
votes
1answer
44 views

Finding the best-fit object from an array of objects

Given an array in the following structure (although obviously with many more items in it): Array ( [0] => stdClass Object ( [currency] => 1 [role] => 3 ...
2
votes
7answers
117 views

Combining two strings in C

I've just started learning about arrays and strings and I wanted to join the inputs of two strings, stringA and stringB and put their values in another string, stringC, after finding their lengths. I ...
0
votes
0answers
31 views

Multidimensional Arrays and JTextArea

I am fairly new here and I have a quick question. Before I ask it, heres my code: TestGame testObj = new TestGame(); dialogArray = testObj.showDialog(); messageDialog = new ...
2
votes
1answer
123 views

Array elements not being set correctly

Hi I have an array of bullet objects.I have the bullet objects isAlive var set to false. If I run the code without clicking the space button(which fires the bullet) and print out the array objects ...
0
votes
2answers
74 views

Numbers I can get by adding an array in java

I need to get a minimum number that I cant get by adding different numbers of an array. Basically if I have these numbers:1,1,1,5; I can get 1,2,3,5,6... but I cant get 4 so that is the number I am ...
0
votes
1answer
112 views

How to create dynamic header for tables in php

My array - $myfinal = Array( 13 => Array ( 5 => 85, 4 => 75, 3 => 65, 2 => 55 ), 12 => 11, ...
0
votes
1answer
357 views

Subtract numbers using arrays - C++

I want to calculate the difference between two numbers (let's say v and n, so v-n) using arrays (don't ask why I have to do so). The arrays for each number are made in the following way: Their ...
0
votes
1answer
58 views

Fastest way to do name value pair look up for a long list

I'm working with a long list of name - value pairs and I will be checking with this list alot so I wanted to know what you guys think is the fastest way to do named value pair look ups. An example of ...
3
votes
1answer
56 views

Array sorting for Budget range in PHP

I have a Two PHP arrays as Below Array 1 - Budget Start Array ( [0] => 25000 [1] => 30000 [2] => 35000 [3] => 15900 ) Array 2 - Budget End Array ( [0] => 40000 ...
2
votes
3answers
118 views

Array loop program logic

I'm supposed to write a program that asks for the number of rows the user wants. For example is the user entered 4 as number it will display all numbers from 1 to 16 arranged in 4 columns and 4 rows. ...
0
votes
4answers
92 views

Array looping program

I'm supposed to write a program that asks for the number of rows the user wants. For example is the user entered 5 it will display all numbers from 25 to 1 arranged in 5 columns and 5 rows. Something ...
0
votes
2answers
44 views

How do I check whether an object's ID is present in an array?

Here's the logic I'm trying to write, but I can't find the proper Ruby way to say it: if Object.id [occurs in this array ->] [13, 16, 234] #run this code if true else #run this code if false ...
0
votes
1answer
35 views

Getting/sorting by range of numbers - syntax issue

I'm using octave and I'm having trouble sorting out a range. I can do the delta section by just saying include anything less than or equal to 4. But I forget how to select a range of numbers for the ...
1
vote
3answers
560 views

Inserting an element into a sorted list

Ok I'm using getSharedPreferences to store my high score but before I fill it up I wanted to sort the scores into ascending order via and array, but if it finds a Score less than it in the first pos ...
0
votes
3answers
208 views

Recursively loop through multidimensional to create flat array

I have a multidimensional array that looks like this: $trees = array( array( 'name' => 'Parent', '__children' => array( array( 'name' => ...
0
votes
2answers
85 views

Where does my array go out of bounds?

I am trying to write an algorithm for this: There are 100 students and 100 lockers. The first student starts at the first locker and opens every one. The next student, student two, starts at the ...
2
votes
3answers
108 views

What does recursion means while prinitng an array

This is my test code - echo "<pre>"; print_r($GLOBALS); RESULT Array ( [GLOBALS] => Array *RECURSION* [_POST] => Array ( ) [_GET] => Array ( ...
0
votes
2answers
66 views

Merge PHP Array Value that have over-lapping year ranges

If I have an array like: Array ( [0] => Array ( [last_year] => 2006 [start_year] => 2000 ) [1] => Array ( [last_year] ...
0
votes
2answers
174 views

Java Input Output Logic

First of all, id like to thank this fourm, as I am finding myself quickly improving through all the material on this forum and all the help different members have been giving me. So this is just a big ...
0
votes
1answer
179 views

XCODE - How to update array?

I'm very new to Xcode/programming and trying to modify existing code I'm having a small problem where I have an amount of objects (enemies) on the screen at one particular time and cannot redefine ...
0
votes
0answers
235 views

Mustache - How to detect array is not empty?

I want to implement the following logic with mustach: {{#if users.length > 0}} <ul> {{#users}} <li>{{.}}</li> {{/users}} </ul> {{/if}} ...
-2
votes
3answers
202 views

Logical task. There is an array. Most elements repeated twice. Find element, that not repeated

There is an array. All elements in array except one - repeated twice. E.g. 4 3 1 4 8 8 1. You need to find element, that is not repeated (in this array it is 3). You should do it in a single array ...
1
vote
1answer
131 views

One Page fadeIn & fadeOut Transition Logic

I am making a one-page website for a client. There are 3 different menu groups, but in this example i simplified it to one menu and less content. I have this navigation: <nav> ...
1
vote
1answer
182 views

Array keys by another arrays values

I have an array $params with the following content: Array( 0 => "array" 1 => "arrayName" //variable 2 => "key1" //optional&variable ie. 0 or 'foo' 3 => "key2" ...
1
vote
2answers
338 views

Performing arithmetic operations on the elements in an array - android/java

well the calculation in my app goes like this.. have a edittext box where the input(number) from the user is parsed to int as nos. based on the input two other sets of edittext box appears. if nos ...
2
votes
4answers
155 views

Check value against values in array and return key using PHP

Problem: I have a value that is set in $record, for instance 1.69. Then I have an array that contain different grades and values. I would like to compare $record against the highest value first to ...
2
votes
4answers
98 views

Python - Categorizing the list of array part 2

I hoping someone can help me with a problem I'm stuck(again) with. if i have coordinates: x = array[0,1,2,3,4,3,2,3,-2,-4,-7,2,2] y = array[0,1,2,3,4,5,6,7,8,9,10,11,12] and with help in ...
2
votes
3answers
203 views

Categorizing the list of array in python

i was helping my friend to do logic algorithm in python but i haven't come with best solution yet. first of all, i have a list of array: x = array[0,1,2,3,4,3,2,3,-2,-4,-7,2,2] and he wanted to ...
3
votes
2answers
1k views

Android: Looping through a string array - help needed on logic for intent method

I'm a java novice and I've using the code below to display a list of clickable TextViews that call a specific class when they are clicked. It is a list of football team names. Eg. Arsenal ...
0
votes
1answer
341 views

Gomoku (5-In-a-row) Computer Logic

Ok so let me preface by saying that my professor has thrown a project at us in which I dont think we were quite ready to take on. Nevertheless I have to build a 5-in a row game that is "smart". so I ...
-2
votes
4answers
85 views

How to remove one NSArray's objects from another NSMutableArray?

I have 2 arrays, I want to remove the one from the other. I can't use removeObject: because the pointers are different. I'm removing objects based on their properties (x.a == y.a) How do I remove ...
0
votes
1answer
129 views

Adding space to an array

Good day, I have a photo gallery that pulls from a json feed. The json gallery contains 600 photos, but I am pushing out 10 at a time, with the gallery reloading on the tenth feed. Now I have two ...
4
votes
3answers
381 views

Get all combinations from multiple nested arrays

I'm trying to come up with an algorithm in PHP to get all the combinations for a nested array: Array ( [0] => Array ( [0] => Option Object ( ...
0
votes
0answers
71 views

Programming logic for AI. How to create a logic system for auto definition? [closed]

When someone is born they have already been subjected to external input from inside the womb. This input is pieced together in the brain and it develops further without knowing what the input is. I'm ...
-3
votes
12answers
251 views

array validation - without using an auxiliary array

This question is for real brainiacs, cause it should be done without an auxiliary array and has to be most efficient! C program - needs to recieve an array with X numbers (suppose X=4 array : ...
2
votes
3answers
108 views

php searching array inside loop

Suppose I have the following array $diff. a, a, a, a, b, b, b, a, a, b, b, b, a, a, a, b A represents a value inside $diff. B represents an Array inside $diff. Now I have to count A if it occurred ...
4
votes
5answers
301 views

Algorithm to dynamically merge arrays

I'm trying to create a INSERT statement for every row in a PHPExcel object. As I've struggled to iterate across the column (ie. go B1 C1 D1, get the values, and put them into an array), I've opted to ...
1
vote
1answer
121 views

Issues with PHP array iteration logic

The logic required in this case might be simple or not, but I couldn't figure it out. So, I am asking for help. After a query, I get an array that looks a bit like this: Array=> [0]=> ...
0
votes
1answer
69 views

jQuery logic : Travesing elements and fading them in?

Call for jQuery experts :) http://s3.postimage.org/nb2mm7u2/download.png Here is what I need. I need each blocks to fade in one by one. The fade-in order should be : First Blue element Second Blue ...
0
votes
1answer
146 views

Selection sort logic error

I am using the selection sort to sort a list of names from a cricket team. The sort works after first repeating a name 3 times which eliminates two other names from the array I am sorting. Input ...
3
votes
2answers
85 views

PHP arrays - a 'set where key=?' type function?

Is there a built in php function that allows me to set a value of an array based on a matching key? Maybe i've been writing too much SQL lately, but i wish I could perform the following logic without ...
0
votes
1answer
183 views

Position of a puzzle piece in Flash Jigsaw puzzle

I have a 4*4 grid. I have 16 MovieClips scattered around the grid. Each MovieClip is 40*40 and they are draggable. The user can drag and drop the MovieClips into the grid. Each clip has a correct ...
2
votes
4answers
217 views

Needing help with JSON problems

i'm with this problem at PHP when i'm try to convert an array to an json I have an recursive function that build the array to encode it on jSon format. That's the array: $data = array( ...
0
votes
1answer
96 views

append key array to an array value

array 'strongfruit' => array apple => string 'say:helloworld' banana => string 'say:omgdude' grape => string 'say:dope' alienfruit => string 'say:ganja' ...
2
votes
3answers
99 views

joining arrays, preserving different value, pick one if same. with php

lets say from zero to more is important level of the value # very imporant 0 => array 'index' => string 'helloworld:Index' (length=16) 404 => string 'helloworld:Missinga' ...
1
vote
3answers
151 views

Ruby array - returning a collection of duplicate and non-duplicate objects

I have an array of Race objects with the following attributes: way race_period_id track_id I want to collect those Race objects -- where the way and track_id attribute values are the same -- in a ...

1 2