コード例 #1
0
        public object Process(Dictionary <string, object> dict)
        {
            var Board = ParseUtil.ConvertTo <ScrabbleBoard>(dict);
            var R     = new RegexV2Engine(Board);

            return(R.BestMove());
        }
コード例 #2
0
        List <ProbableMove> Probables(ScrabbleGame game)
        {
            var R = new RegexV2Engine(game.Board);
            var x = R.Probables();

            return(x.Take(Top).ToList <ProbableMove>());
        }