On Feb 3, 5:29 pm, FlyingJoe <
flyingj...@mac.com> wrote:
> Having just tied on two tournaments in a row, this question comes to
> mind, but I haven't figured it out yet: On the Wordwiggle site, who
> wins on ties in tournaments (or gets their name placed higher than the
> others on a tie in the final score board)?
>
> I know what it isn't though. Between the two or more who tied, it
> isn't:
> - Who won most of the rounds for that tournament...
> - Who won the last round of the tournament...
> - Who played last in that tournament...
I had to look at the code since I did that almost 8 years ago!
Anyway, the sort order is "random" (what a statement)! Not on
purpose,
but just because the way the sort is done. In the web page the sort
is
done in JavaScript based on the scores and the scores are just the
scores.
(The reason for this is that you can click on the column headers to
sort
by individual games or the tournament overall) Anyway, the sort
function
only takes the number into consideration as it has no other data to go
on and thus the result is "random" albeit it is not really random in
that
you can actually predict the results but you can not easily write what
would happen in simple terms.
Anyway, sorry it is not more sophisticated - I like the idea of the
person finishing first getting the nod but I think that if I do get
some time with it I may just mark ties as such as not worry about it.
(I just don't have any free time)