def remove_blanks(hash)
    values = {}
    hash.each do |k,v|
...

Ruby Clear a hash of empty strin...

by Nikos D., March 08, 2011 20:59, 2 refactorings, tagged with speed, ruby, recursion, readability

Any ideas for better implem...

59bbe3780ec28c45b4945f00435efeb3 Talk
public class MenuTraversal
	{
		/// <summary>
...

C# Iterative Recursion

by Lavinski, November 23, 2010 04:37, 1 refactoring, tagged with tree, recursion, iterative

I'm writing a tree transfor...

E93b128002ac0c89ef2868ab80e41781 Talk
require 'net/sftp'

class Net::SFTP::Session
...

Ruby NET::SFTP clear a remote di...

by dane.oconnor.myopenid.com, August 19, 2009 15:38, 1 refactoring, tagged with speed, ruby, recursion, net-sftp, files

I'm trying to clear a remot...

Ceb3004fcd7431660b8e16a91ca89b53 Talk
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
#!/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, 6 refactorings, tagged with recursion, generator, permutations, permutate

I suspect there is a better...

264124475f095b65634c53da3380b88d Talk
def perm(ni):
    result = []
    
...

Python Permutation of values

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

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

C2953d47b6de83f3217b48c3584fab1c Talk