<?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: Golf time</title>
	<atom:link href="http://ericfaller.com/blog/2007/03/17/golf-time/feed/" rel="self" type="application/rss+xml" />
	<link>http://ericfaller.com/blog/2007/03/17/golf-time/</link>
	<description>Pithy Quote Goes Here</description>
	<lastBuildDate>Sun, 28 Mar 2010 12:48:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Eric Faller</title>
		<link>http://ericfaller.com/blog/2007/03/17/golf-time/comment-page-1/#comment-6606</link>
		<dc:creator>Eric Faller</dc:creator>
		<pubDate>Mon, 19 Mar 2007 16:39:00 +0000</pubDate>
		<guid isPermaLink="false">http://efaller.com/blog/2007/03/17/golf-time/#comment-6606</guid>
		<description>I sometimes play golf, but not that much. This will be a good excuse.</description>
		<content:encoded><![CDATA[<p>I sometimes play golf, but not that much. This will be a good excuse.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://ericfaller.com/blog/2007/03/17/golf-time/comment-page-1/#comment-6605</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Mon, 19 Mar 2007 16:16:10 +0000</pubDate>
		<guid isPermaLink="false">http://efaller.com/blog/2007/03/17/golf-time/#comment-6605</guid>
		<description>That makes sense - I was just highlighting the importance of having precise specs.  I&#039;d expect better from a Tester...

Do you even play golf?</description>
		<content:encoded><![CDATA[<p>That makes sense &#8211; I was just highlighting the importance of having precise specs.  I&#8217;d expect better from a Tester&#8230;</p>
<p>Do you even play golf?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Faller</title>
		<link>http://ericfaller.com/blog/2007/03/17/golf-time/comment-page-1/#comment-6604</link>
		<dc:creator>Eric Faller</dc:creator>
		<pubDate>Sun, 18 Mar 2007 22:08:59 +0000</pubDate>
		<guid isPermaLink="false">http://efaller.com/blog/2007/03/17/golf-time/#comment-6604</guid>
		<description>Exactly - why not?

There&#039;s a missing line - &quot;#include stdlib.h&quot;, where qsort() is defined, but WordPress kept eating the stupid  triangle brackets so I gave up</description>
		<content:encoded><![CDATA[<p>Exactly &#8211; why not?</p>
<p>There&#8217;s a missing line &#8211; &#8220;#include stdlib.h&#8221;, where qsort() is defined, but WordPress kept eating the stupid  triangle brackets so I gave up</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://ericfaller.com/blog/2007/03/17/golf-time/comment-page-1/#comment-6603</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Sun, 18 Mar 2007 16:53:43 +0000</pubDate>
		<guid isPermaLink="false">http://efaller.com/blog/2007/03/17/golf-time/#comment-6603</guid>
		<description>Why assembly? Why not, I suppose you&#039;ll say. ;)

Not knowing x86 assembly, what does &quot;mov eax, [qsort]&quot; do, when &quot;qsort&quot; cannot be found anywhere in your code?</description>
		<content:encoded><![CDATA[<p>Why assembly? Why not, I suppose you&#8217;ll say. <img src='http://ericfaller.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Not knowing x86 assembly, what does &#8220;mov eax, [qsort]&#8221; do, when &#8220;qsort&#8221; cannot be found anywhere in your code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Faller</title>
		<link>http://ericfaller.com/blog/2007/03/17/golf-time/comment-page-1/#comment-6602</link>
		<dc:creator>Eric Faller</dc:creator>
		<pubDate>Sun, 18 Mar 2007 07:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://efaller.com/blog/2007/03/17/golf-time/#comment-6602</guid>
		<description>Yes, indeed that would have worked.  In fact Erin&#039;s solution did something similar and returned a &#039;sorted array&#039; that had nothing to do with the input.  However the judges looked more for usefulness than strict adherence to what the question specifically asked.</description>
		<content:encoded><![CDATA[<p>Yes, indeed that would have worked.  In fact Erin&#8217;s solution did something similar and returned a &#8216;sorted array&#8217; that had nothing to do with the input.  However the judges looked more for usefulness than strict adherence to what the question specifically asked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://ericfaller.com/blog/2007/03/17/golf-time/comment-page-1/#comment-6601</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sun, 18 Mar 2007 02:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://efaller.com/blog/2007/03/17/golf-time/#comment-6601</guid>
		<description>The challenge posted by Justin actually specified that the function &quot;return a sorted array&quot; of length N.  This is very different than sorting the specified array.  Thus, I think this would be an equally acceptable solution.

void ArraySort(int _array[], int _length)
{
    memset(_array, 0, _length * sizeof(int));
}

I mean, it&#039;s &quot;sorted&quot;, right?</description>
		<content:encoded><![CDATA[<p>The challenge posted by Justin actually specified that the function &#8220;return a sorted array&#8221; of length N.  This is very different than sorting the specified array.  Thus, I think this would be an equally acceptable solution.</p>
<p>void ArraySort(int _array[], int _length)<br />
{<br />
    memset(_array, 0, _length * sizeof(int));<br />
}</p>
<p>I mean, it&#8217;s &#8220;sorted&#8221;, right?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

