<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Counting occurences</title>
	<atom:link href="http://clj-me.cgrand.net/2009/04/27/counting-occurences/feed/" rel="self" type="application/rss+xml" />
	<link>http://clj-me.cgrand.net/2009/04/27/counting-occurences/</link>
	<description>When the pupil is ready to learn, a teacher will appear.</description>
	<lastBuildDate>Mon, 30 Jan 2012 20:57:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Tim McCormack</title>
		<link>http://clj-me.cgrand.net/2009/04/27/counting-occurences/comment-page-1/#comment-11953</link>
		<dc:creator>Tim McCormack</dc:creator>
		<pubDate>Mon, 21 Nov 2011 00:42:54 +0000</pubDate>
		<guid isPermaLink="false">http://clj-me.cgrand.net/2009/04/27/counting-occurences/#comment-11953</guid>
		<description>My thought process on this would probably be something like:

What does the final result need to look like?
{:a 5, :b 1, :c 4}

Can I build that up incrementally (as opposed to multiple passes)?
Yes, given {:a 5, :b 1, :c 4} and another occurrence of :b, I can produce {:a 5, :b 2, :c 4}. Good, so no post-processing or multi-pass processing is needed.

Is there a good initial condition?
{}

etc.</description>
		<content:encoded><![CDATA[<p>My thought process on this would probably be something like:</p>
<p>What does the final result need to look like?<br />
{:a 5, :b 1, :c 4}</p>
<p>Can I build that up incrementally (as opposed to multiple passes)?<br />
Yes, given {:a 5, :b 1, :c 4} and another occurrence of :b, I can produce {:a 5, :b 2, :c 4}. Good, so no post-processing or multi-pass processing is needed.</p>
<p>Is there a good initial condition?<br />
{}</p>
<p>etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexandre Jasmin</title>
		<link>http://clj-me.cgrand.net/2009/04/27/counting-occurences/comment-page-1/#comment-6941</link>
		<dc:creator>Alexandre Jasmin</dc:creator>
		<pubDate>Mon, 04 Jul 2011 18:19:50 +0000</pubDate>
		<guid isPermaLink="false">http://clj-me.cgrand.net/2009/04/27/counting-occurences/#comment-6941</guid>
		<description>I like your explanation. Couldn&#039;t be clearer.
But it seems that clojure.core now has a (frequencies coll) function that does this.</description>
		<content:encoded><![CDATA[<p>I like your explanation. Couldn&#8217;t be clearer.<br />
But it seems that clojure.core now has a (frequencies coll) function that does this.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

