<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Jackson&#039;s Programming Challenges</title>
		<link>http://bgscc.wikidot.com/programming-challenges</link>
		<description></description>
				<copyright></copyright>
		<lastBuildDate></lastBuildDate>
		
					<item>
				<guid>http://bgscc.wikidot.com/forum/t-83160/ants-culture-and-fashion-statement</guid>
				<title>Ants; Culture and Fashion Statement</title>
				<link>http://bgscc.wikidot.com/forum/t-83160/ants-culture-and-fashion-statement</link>
				<description>3 problems from the Australian Informatics Program</description>
				<pubDate>Fri, 22 Aug 2008 06:24:16 +0000</pubDate>
				<wikidot:authorName>JGat</wikidot:authorName>				<wikidot:authorUserId>80823</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p><a href="http://docs.google.com/View?docid=dccqc9b3_3hfnpkxd9&amp;hl=en" >Ants</a></p> <p><a href="http://docs.google.com/View?docid=dccqc9b3_26vrqmn2x&amp;hl=en" >Culture</a></p> <p><a href="http://docs.google.com/View?docid=dccqc9b3_4hmp6f7gk&amp;hl=en" >Fashion Statement</a></p> <p>Have a go at each of these, they're a good starting point towards problem solving using programming. You can also look at the <a href="http://docs.google.com/View?docid=dccqc9b3_5hfg3n7hn&amp;hl=en" >Guide to programming</a>.</p> 
				 	]]>
				</content:encoded>								<category>Programming Challenges</category>
							</item>
					<item>
				<guid>http://bgscc.wikidot.com/forum/t-64634/fibonacci</guid>
				<title>Fibonacci</title>
				<link>http://bgscc.wikidot.com/forum/t-64634/fibonacci</link>
				<description>ProgComp 2008 Trial Question</description>
				<pubDate>Thu, 05 Jun 2008 10:10:02 +0000</pubDate>
				<wikidot:authorName>JGat</wikidot:authorName>				<wikidot:authorUserId>80823</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The Fibonacci sequence is well known in mathematics. The first two values are 1 and 1, and every other value is the sum of the two previous values. The first dozen Fibonacci numbers are thus</p> <p>1 1 2 3 5 8 13 21 34 55 89&nbsp;144…</p> <p>Write a program that displays the largest Fibonacci number less than or equal to a limit supplied to the program on each test run. For example, if the limit is 50, the program should just show 34.</p> <p>Constraints - you may assume the limit is less than one million.</p> <p>Run your program on the following three test cases:</p> <p>Test Input<br /> 8<br /> 234<br /> 876543</p> 
				 	]]>
				</content:encoded>								<category>Programming Challenges</category>
							</item>
					<item>
				<guid>http://bgscc.wikidot.com/forum/t-59126/super-primes</guid>
				<title>Super Primes</title>
				<link>http://bgscc.wikidot.com/forum/t-59126/super-primes</link>
				<description>Mathematical Thinking here... From ACPC Samples</description>
				<pubDate>Mon, 12 May 2008 11:20:54 +0000</pubDate>
				<wikidot:authorName>JGat</wikidot:authorName>				<wikidot:authorUserId>80823</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>What are Super Primes?</p> <ul> <li>A Super Prime is a prime number with the additional interesting property that as each digit is removed from the right the number which remains is a prime.</li> </ul> <p>Instructions</p> <p>The following is a list of Super Primes of length 4:<br /> <tt>2333<br /> 2339<br /> 2393<br /> 2399<br /> 2939<br /> 3119<br /> 3137<br /> 3733<br /> 3739<br /> 3793<br /> 3797<br /> 5939<br /> 7193<br /> 7331<br /> 7333<br /> 7393</tt></p> <p>Instructions</p> <ul> <li>Write a program that prints all super primes of length 6</li> <li>Your output should contain each Super Prime on a line each.</li> <li>Output sould be in ascending order.</li> <li>No other output should be produced by your program other than the numbers.</li> </ul> <p>If you can use File I/O, output your answer to "primes.txt"</p> 
				 	]]>
				</content:encoded>								<category>Programming Challenges</category>
							</item>
					<item>
				<guid>http://bgscc.wikidot.com/forum/t-59094/wordsworth</guid>
				<title>Wordsworth</title>
				<link>http://bgscc.wikidot.com/forum/t-59094/wordsworth</link>
				<description>A nice starter problem - not too hard, not too easy.
From ProgComp &#039;03</description>
				<pubDate>Mon, 12 May 2008 09:08:15 +0000</pubDate>
				<wikidot:authorName>JGat</wikidot:authorName>				<wikidot:authorUserId>80823</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>You are to write a program which will work out the value of a piece of text. It is to do this by counting the number of letters in each word in the text.</p> <p>The text is a list of words, separated by at least one spaces, possibly together with some punctuation and/or line breaks. The length of each word corresponds to a digit in the "value", with a word of length 10 corresponding to the digit 0. There is to be a decimal point after the first digit.</p> <p>For example the phrase "How I need a monkey" has words of length 3, 1, 4, 1 and 6 respectively. This is worth 3.1416 (coincidentally this is pi to 4 decimal places).</p> <p>You are to write a program which, given such a message, returns its value.</p> <p>You may assume that there are between two and sixty words in the message, and that no word is longer than ten letters. You may also assume that the input will all be on one line of text, and each word will have at least one letter.</p> <table class="wiki-content-table"> <tr> <th>Sample Input</th> <th>Sample Output</th> </tr> <tr> <td><tt>But a time I spent wandering in bloomy night yon towers</tt></td> <td><tt>3.1415926536</tt></td> </tr> <tr> <td><tt>By fleeing a dinosaur in Slovakia, a dinosaur in Slovakia made escape!</tt></td> <td><tt>2.71828182846</tt></td> </tr> <tr> <td><tt>S. Wordsworth</tt></td> <td><tt>1.0</tt></td> </tr> </table> 
				 	]]>
				</content:encoded>								<category>Programming Challenges</category>
							</item>
					<item>
				<guid>http://bgscc.wikidot.com/forum/t-59091/programming-challenges</guid>
				<title>Programming Challenges</title>
				<link>http://bgscc.wikidot.com/forum/t-59091/programming-challenges</link>
				<description>Info about the challenges</description>
				<pubDate>Mon, 12 May 2008 08:52:09 +0000</pubDate>
				<wikidot:authorName>JGat</wikidot:authorName>				<wikidot:authorUserId>80823</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>See the recent challenges, and my personal introduction on the <a href="http://bgscc.wikidot.com/programming-challenges">Programming Challenges</a> page.</p> 
				 	]]>
				</content:encoded>								<category>Programming Challenges</category>
							</item>
				</channel>
</rss>