Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Solver for the game "Set" matches three times

by ChOas (Curate)
on Jul 15, 2008 at 06:09 UTC ( [id://697643]=note: print w/replies, xml ) Need Help??


in reply to Solver for the game "Set" matches three times

I personally would try to keep track of the unique combinations of the cards using a hash, the keys being the card
sorted contactenated shape/color/pattern values of the cards.

so if I have 2 cards 2,3,1,2 and 1,2,3,1 first create two keys,
2312 and 1231, sort them 1231,2312, concat them as a key ++$unique_combo{"12312312"};

After been over all the cards the keys in my hash will be the unique combinations.

Further, @{$combo->[0]} should just dereference your array

GreetZ!,
    ChOas

print "profeth still\n" if /bird|devil/;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://697643]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-03-29 14:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found