Re: Custom software
Prototype wrote:...work out if a number in a sequence is higher or lower than the previous entry
I'm a little confused as to the meaning of this. If you are talking about an array then you could just compare the new value to the last value in the list, then add the new value to the list.
Like (pseudocode)
Code:if( newValue > values[ values.length - 1 ] )
{do whatever}
values.Add( newValue );
Prototype wrote:I don't want to enter the values - just download them.
You might have to be little more specific here. From where is the new data coming? You want to download a list of values from a server? An applet?
Prototype wrote:colour code each movement
Are you making a game? I guess one would need to know your environment/data structures to analyze feasibility of one algorithm over another.
Any more information you can provide would be helpful. Platform & environment/language requirements?