Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Ah, Guido's time machine strikes again :)

Here's my (now mostly obsolete) version:

    def count(string):
        counts = {}
        for item in set(string):
            counts[item] = string.count(item)
        return counts
        
    print count("abracadabra")
I had a look into the collections library, and it just uses iterable.iteritems(). I suspect that this might be faster for larger strings with multiple repeating characters, since set() and count() will pass the string directly to C.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: