Search the web
Sign In
New User? Sign Up
wordgame-programmers · A list for programmers of word games. Ve
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 449 - 478 of 963   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
449
FYI: http://eon.law.harvard.edu/openlaw/eldredvashcroft/ if they knock down the Mickey Mouse extension, Scrabble goes with it as they're the same age and...
Graham Toal
graham_toal
Offline Send Email
May 2, 2002
2:30 am
450
Alfred Butts died in 1993, so even if the Sonny Bono act is repealed it will mean the Scrabble copyright expires in about 41 years from now. Of course, my...
Patrick Niesink
pniesink
Offline Send Email
May 2, 2002
3:58 am
451
I am a believer in sims in that I think they give a very good estimation of the best move... However, I have one question. From what I understand about how...
John Babina
john@...
Send Email
May 8, 2002
3:53 pm
452
Hello, I'm new to this list and new to this community, and my programming background is limited to the HTML-ColdFusion-JavaScript-SQL area, so please forgive ...
Eric Nelson
ou1a
Offline Send Email
May 8, 2002
8:49 pm
453
Hi There are certainly ASCII words lists out there which go up to longer lengths, although I haven't seen one which lists *all* allowable words in...
Nick Ball
nicholasmart...
Offline Send Email
May 10, 2002
12:50 pm
454
... I've got several files on my computers, including some that are supposed to be OSPD3 and OWL (or whatever the letters are) and SOWPODS, but I've never ...
AmazingMazeMan@...
Send Email
May 10, 2002
11:45 pm
455
Hi Following the clabbers thread on uk-scrabble, is there a computer opponent on the net yet? I remember Mark Watkins' wordgame magazine had one of the...
Nick Ball
nicholasmart...
Offline Send Email
May 15, 2002
11:13 am
456
Is a copy of the words from this dictionary available on the Internet somewhere? I know it exists, but the last time I tried to obtain a copy of it (maybe 10...
Chris Long
vertex_operator
Offline Send Email
May 15, 2002
10:23 pm
457
Hi I decide to do a stand-alone Scrabble game for my programming class using Visual Basic. Anyone have any suggesting of how to start? And how could I set up a...
Tkcom
Offline Send Email
May 22, 2002
5:57 pm
458
Andrew, your website with the javascript board generator has disappeared from http://www.ascook.fsnet.co.uk/scrabble/viewer.html I can't find your new homepage...
graham_toal
Offline Send Email
Jul 14, 2002
2:54 pm
459
Hello My name is Tim and I am not a programmer. I am a self published game inventor. I am writing to this list because I created a deck of cards called Alpha...
hexchex
Offline Send Email
Jul 18, 2002
6:19 pm
460
I assume that the rules for this thread is to find the highest scoring possible play for each move in a game sequence: 1. Ignoring whether or not any play sets...
Steven Gordon
sagordon2@...
Send Email
Jul 21, 2002
1:45 am
461
... I already have that code running on a cgi at my web site. I won't say where exactly though until the human effort is over :-) G...
Graham Toal
graham_toal
Offline Send Email
Jul 21, 2002
3:00 am
462
Here is a quick way to compute the frequency of hands from a bag of tiles. These numbers seem to match with J Chen's work. I got my start from Graham's work...
wndmlr
Offline Send Email
Jul 26, 2002
10:48 am
463
I've been disappointed before! - does this handle the complex cases as described in articles like these?: ...
Graham Toal
graham_toal
Offline Send Email
Jul 26, 2002
2:35 pm
464
Try this, it's very crude, and in BASIC, and slow, but it looks like it works. I tested it on 3, EEV, and a 30 character string, and got the same answer with...
AmazingMazeMan@...
Send Email
Jul 26, 2002
9:01 pm
465
... OK, I've had time now to have a look at this and I need a little clarification please: I checked "AEINORT" and sure enough it gives a frequency of 1679616,...
graham_toal
Offline Send Email
Jul 28, 2002
12:57 pm
466
Hi... I'm new to this board, so let me introduce myself. My name is Mark, and I'm a network administrator/web designer. I also do some programming, and have...
Mark Congdon
mcphn
Offline Send Email
Sep 16, 2002
3:45 am
467
Hi again... Here's the compression/searching method I used for my Boggle solver program. I'd be very interested to hear about other ways that people have...
Mark Congdon
mcphn
Offline Send Email
Sep 16, 2002
10:12 pm
468
I have a Java app I wrote for this (also for Boggle) that makes a tree like you've described (a DAWG) and then finds all identical subtrees and relinks all...
Kent Smotherman
twinfeats
Offline Send Email
Sep 16, 2002
11:50 pm
469
... I also use (for a cryptogram solver) a trie (I would not call it a DAWG, that describes a specific representation of a trie). But instead of using 26 bits...
David Eppstein
eppstein@...
Send Email
Sep 17, 2002
12:28 am
470
... I've written something similar, but in C++, and it only takes 2 seconds to build a tree with it... (from a sorted 248519 word list) It uses a data...
Falk Hueffner
falk.hueffner@...
Send Email
Sep 17, 2002
10:13 am
471
In my 1994 paper (S.A. Gordon, A faster Scrabble move generation algorithm, Software Practice and Experience 24 (2) (1994) 219-232.), I presented a ...
Steven Gordon
sagordon2@...
Send Email
Sep 17, 2002
12:08 pm
472
... If you were cramped for memory, looks like you could cram the whole thing into 4 bytes (32 bits)... At a minimum you could mix the two booleans into the...
John Babina
john@...
Send Email
Sep 17, 2002
1:38 pm
473
... Uhm, 8 + 22 + 1 + 1 = 32... so it is exactly 4 bytes. BTW, this layout isn't really my idea, I found it somewhere else, but I don't remember where... :( --...
Falk Hueffner
falk.hueffner@...
Send Email
Sep 17, 2002
1:41 pm
474
... thing ... Yes, I was well aware that 8 + 22 + 1 + 1 = 32, that is why I suggested it. What I was referring to is that depending on your compiler or options...
John Babina
john@...
Send Email
Sep 17, 2002
1:46 pm
475
... Really?! Which compilers do that? John -- John Chew (poslfit on MD/WD/PD) jjchew@... * http://www.math.utoronto.ca/jjchew...
John J. Chew III
poslfit
Offline Send Email
Sep 17, 2002
1:55 pm
476
... Graham Toal presented a nice portable version of DAWG construction and printing etc. a long time ago (http://www.gtoal.com/wordgames/dawgutils/). He used 4...
Laeuter
laeuter@...
Send Email
Sep 17, 2002
2:09 pm
477
... I've written several versions of my lexicon data structure. The move generation algorithm is Steve Gordon's and I use his GADDAG, but the method of which...
brian
ringtheorist
Offline Send Email
Sep 17, 2002
2:35 pm
478
... I don't suppose anybody's done this in perl? I've been thinking of putting up a website using CGIs to allow Crosswords (my PalmOS Scrabble-like game)...
Eric House
eeeehouse
Offline Send Email
Sep 17, 2002
3:44 pm
Messages 449 - 478 of 963   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help