1
2
3
        private int TableIndex(char c)
        {
...

C# On Code to Simplify

by orip, January 18, 2008 18:55 Star_fullStar_fullStar_fullStar_full

I liked Jonathan Starr's ap...

9c52ad00ba2f2602661c49f896733229 Talk
1
2
3
Dictionary<char,int> dict = new Dictionary<char,int> {
  {'A', 1},
...

C# On Code to Simplify

by orip, January 18, 2008 18:51

nibbles&bits: I also think ...

9c52ad00ba2f2602661c49f896733229 Talk
1
2
3
from itertools import izip
def alphabet_cmp(a, b):
...

Python On Custom sort a list of words

by orip, January 18, 2008 01:12

armandino - I liked how you...

9c52ad00ba2f2602661c49f896733229 Talk