Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
1k views

Is F# a good language for card game AI?

I'm writing a Mahjong Game in C# (the Chinese traditional game, not the solitaire kind). While writing the code for the bot player's AI, I'm wondering if a functional language like F# would be a more ...
9
votes
6answers
699 views

How can I quickly tell if a list contains only duplicates?

There are multiple related questions, but I'm looking for a solution specific to my case. There is an array of (usually) 14 integers. How can I quickly tell if each int appears exactly twice (i.e. ...
8
votes
2answers
299 views

Algorithm to find streets and same kind in a hand

This is actually a Mahjong-based question, but a Romme- or even Poker-based background will also easily suffice to understand. In Mahjong 14 tiles (tiles are like cards in Poker) are arranged to 4 ...
6
votes
2answers
395 views

Resources that explain or investigate artificial intelligence (AI) based approaches/strategies to the game of Mahjong

While Mahjong (the actual game, not Mahjong solitare) is fairly simple in terms of basic rules and gameplay, setting objectives for the AI to transition to aim for certain end game goals seems fairly ...
6
votes
8answers
1k views

Mahjong - Arrange tiles to ensure at least one path to victory, regardless of layout

Regardless of the layout being used for the tiles, is there any good way to divvy out the tiles so that you can guarantee the user that, at the beginning of the game, there exists at least one path to ...
4
votes
3answers
456 views

How do I calculate the shanten number in mahjong?

This is a followup to my earlier question about deciding if a hand is ready. Knowledge of mahjong rules would be excellent, but a poker- or romme-based background is also sufficient to understand ...
4
votes
6answers
304 views

How can I quickly tell if a list contains a list?

There are multiple related questions, but I'm looking for a solution specific to my case. There is an array of (usually) 14 integers, each in the range of 1 to 34. How can I quickly tell if each int ...
4
votes
1answer
731 views

How to implement a Mahjong game?

Mahjong is one of the most popular games in Asia (not the solitaire style found in Windows 7). There were plenty of Mahjong games out there including online ones from Yahoo or offline ones back in ...
1
vote
0answers
92 views

Identifying a Winning Mahjong Hand

I'm working on trying to identify a winning hand in mahjong, does anyone have any tips or a working formula? The game of mahjong is like gin rummy with 13 cards, sets of 4,3 or flushes of 3. A ...
1
vote
1answer
377 views

Mahjong winning hand algorithm

I'm looking for an algorithm that will determine if the current mahjong hand is a winning one. If you are not familiar with the game, here's the basic idea (simplified): There are three suits ...
1
vote
3answers
480 views

Please help me speed up this mahjong algorithm

I am writing some mahjong-related functions in JavaScript. Here is what I have below, with code for test cases. Note that mahjong hands are represented by arrays, with: element 0 being the total ...
1
vote
4answers
893 views

Mahjong-solitaire solver algorithm, which needs a speed-up

I'm developing a Mahjong-solitaire solver and so far, I'm doing pretty good. However, it is not so fast as I would like it to be so I'm asking for any additional optimization techniques you guys might ...
0
votes
2answers
1k views

iPhone - Need some reference code for card game

I am going to build a card game. Game will be like MahJong. I want some reference code or link to start with. If you have any, then please share it.