GitList
Repositories
Help
Report an Issue
boggleNet
Code
Commits
Branches
Tags
Search
Tree:
645335e
Branches
Tags
master
boggleNet
ListWord.cs
Revert "Removing byte order mark in file using for f in `ls`; do awk '{if(NR==1)sub(/^\xef\xbb\xbf/,"");print}' $f > $f; done"
Dev Ghai
commited
645335e
at 2013-09-23 06:37:32
ListWord.cs
Blame
History
Raw
using System.Collections.Generic; namespace Boggle { public class ListWord { public bool IsWord; public Dictionary<string, ListWord> Next; public ListWord() { this.IsWord = false; this.Next = null; } public ListWord(bool isWord) { this.IsWord = isWord; this.Next = null; } public ListWord(bool isWord, Dictionary<string, ListWord> next) { this.IsWord = isWord; this.Next = next; } } }