<?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: Facebook FizzBuzz</title>
	<atom:link href="http://www.claudiocherubino.it/2009/01/23/facebook-fizzbuzz/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.claudiocherubino.it/2009/01/23/facebook-fizzbuzz/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=facebook-fizzbuzz</link>
	<description>Life of a Googler</description>
	<lastBuildDate>Wed, 25 Jan 2012 13:36:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Matt Valerio</title>
		<link>http://www.claudiocherubino.it/2009/01/23/facebook-fizzbuzz/comment-page-1/#comment-20504</link>
		<dc:creator>Matt Valerio</dc:creator>
		<pubDate>Wed, 28 Jan 2009 22:14:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.claudiocherubino.it/?p=99#comment-20504</guid>
		<description>@Claudio -- One thing to pay attention to is your unnecessary creation of a linked list [1..n] -- very large values of n can cause a lot of memory to be consumed.  In this case a sequence expression might be the most efficient route :)

@Jason -- nice!</description>
		<content:encoded><![CDATA[<p>@Claudio &#8212; One thing to pay attention to is your unnecessary creation of a linked list [1..n] &#8212; very large values of n can cause a lot of memory to be consumed.  In this case a sequence expression might be the most efficient route <img src='http://www.claudiocherubino.it/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>@Jason &#8212; nice!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Kikel</title>
		<link>http://www.claudiocherubino.it/2009/01/23/facebook-fizzbuzz/comment-page-1/#comment-20503</link>
		<dc:creator>Jason Kikel</dc:creator>
		<pubDate>Tue, 27 Jan 2009 14:39:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.claudiocherubino.it/?p=99#comment-20503</guid>
		<description>Unnecessary use of active patterns :-)
[sourcecode language=&#039;csharp&#039;]
let FB n =
    let (&#124;Fizz&#124;Buzz&#124;FizzBuzz&#124;Numeric&#124;) n =
        match n with
        &#124; n when(n % 15 = 0) -&gt; FizzBuzz(&quot;FizzBuzz&quot;)
        &#124; n when(n % 5 = 0) -&gt; Buzz(&quot;Buzz&quot;)
        &#124; n when(n % 3 = 0) -&gt; Fizz(&quot;Fizz&quot;)
        &#124; n -&gt; Numeric(n.ToString())

    let FizzBuzzImpl n =
        match n with
        &#124; FizzBuzz(str)&#124; Buzz(str) &#124; Fizz(str) &#124; Numeric(str) -&gt; printf &quot;%s&quot; str

    [1..n] &#124;&gt; Seq.iter FizzBuzzImpl
[/sourcecode]</description>
		<content:encoded><![CDATA[<p>Unnecessary use of active patterns <img src='http://www.claudiocherubino.it/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<pre class="brush: csharp; title: ; notranslate">
let FB n =
    let (|Fizz|Buzz|FizzBuzz|Numeric|) n =
        match n with
        | n when(n % 15 = 0) -&gt; FizzBuzz(&quot;FizzBuzz&quot;)
        | n when(n % 5 = 0) -&gt; Buzz(&quot;Buzz&quot;)
        | n when(n % 3 = 0) -&gt; Fizz(&quot;Fizz&quot;)
        | n -&gt; Numeric(n.ToString())

    let FizzBuzzImpl n =
        match n with
        | FizzBuzz(str)| Buzz(str) | Fizz(str) | Numeric(str) -&gt; printf &quot;%s&quot; str

    [1..n] |&gt; Seq.iter FizzBuzzImpl
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Art Scott</title>
		<link>http://www.claudiocherubino.it/2009/01/23/facebook-fizzbuzz/comment-page-1/#comment-20502</link>
		<dc:creator>Art Scott</dc:creator>
		<pubDate>Sat, 24 Jan 2009 22:34:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.claudiocherubino.it/?p=99#comment-20502</guid>
		<description>Hi Claudio.
Clarissmo!
Grazie.
Ciao bene.</description>
		<content:encoded><![CDATA[<p>Hi Claudio.<br />
Clarissmo!<br />
Grazie.<br />
Ciao bene.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

