hello,
I wanna create a struct in python. the struct needs to have a char and an array of chars.
eg. (ruby code):
Somestruct = Struct .new(:character, :characterArray)
structure = Somestruct.new(" ", [])
How do I do this. I made a Trie in ruby and now I wanna do the same in python. I can use the same algorithm if I can figure out how to store a Trie.
Thanks
drjay