1
2
3
4
public static class DependencySorter<T>
{
    public static IEnumerable<T> Sort(Dictionary<T, IEnumerable<T>> dependencies)
...

C# Sorting by dependencies

by rikkus, November 05, 2008 12:14, 3 refactorings, tagged with recursion

This code sorts a collectio...

22e33503870d8e20493c4dd6b2f9767f Talk
1
2
3
4
#!/usr/bin/python2.5
def permute(li):
    """Generate all permutations of a sequence
...

Python Computing permutations with...

by Leif Ryge, October 22, 2008 04:16, 5 refactorings, tagged with generator, permutations, permutate, recursion

I suspect there is a better...

264124475f095b65634c53da3380b88d Talk
1
2
3
4
def perm(ni):
    result = []
    
...

Python Permutation of values

by Auron, October 07, 2008 12:18, 4 refactorings, tagged with recursion, lists

Boys and girls, it's time t...

C2953d47b6de83f3217b48c3584fab1c Talk