<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.7" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Remove Duplicates</title>
	<link>http://www.technicalinterviews.net/remove-duplicates/</link>
	<description>This site features a collection of common technical interview questions gathered by a group of programmers who have been through, and given, lots of technical interviews. There is an emphasis on C++ and game programming technical interviews, but most of the questions are relevant to any technical interview.</description>
	<pubDate>Thu, 04 Dec 2008 19:10:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.7</generator>

	<item>
		<title>by: Jason</title>
		<link>http://www.technicalinterviews.net/remove-duplicates/#comment-1511</link>
		<pubDate>Mon, 17 Sep 2007 22:15:01 +0000</pubDate>
		<guid>http://www.technicalinterviews.net/remove-duplicates/#comment-1511</guid>
					<description>
int Reduce(int * pArray, int len)
{
	// make sure we got a valid pointer
	if (!pArray) return 0;

	// make sure we have an array &#62;= 2 in length, otherwise the array is "unique" by definition
	if (len </description>
		<content:encoded><![CDATA[<p>int Reduce(int * pArray, int len)<br />
{<br />
	// make sure we got a valid pointer<br />
	if (!pArray) return 0;</p>
<p>	// make sure we have an array &gt;= 2 in length, otherwise the array is &#8220;unique&#8221; by definition<br />
	if (len
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
