by Micand on 5/23/14, 4:51 PM with 2 comments
One station might give the team a metre stick, then ask them to measure the height of a building. (This can be solved by using similar triangles to estimate the building's height.) Time penalties are added to the team's completion time depending on how close their answer was.
My constraints are thus:
* Most students won't have CS/programming knowledge
* Challenge should not require a computer
* Idea should challenge teams of six students for 15-20 minutes
* Challenge must have clear answer that can be objectively scored (not judged)
One reasonably good challenge presents a sentence encoded with a Caesar cipher, then asks the students to decode it. The person running the station give a short explanation of what a Caesar cipher is, then leave the teams to decode the text. Time penalties are awarded based on correctness -- each incorrect character adds a 30-second penalty.The Caesar cipher idea has been used often in the past, however, and I'm trying to develop something novel. I have been through the various activities on CS Unplugged (http://csunplugged.org/activities), but none appealed to me -- the exercises I saw were generally aimed at illustration and not suitable for competition, were too simple, or required too much explanation of background knowledge.
Do you have any ideas on what would make a fun CS-related challenge for teams of six high school students?
Thanks!
by tubbzor on 5/23/14, 6:51 PM
One such is constructing a minimum spanning tree. Give them some problem where they would need it on a dense graph and let them struggle to piece it together (and penalize for wrong edges included). At the end you could explain how their strategy related to Prim or Kruskal's algorithms.
Another is finding a shortest path from 1 vertex to another. The context would be rather easy and you could again penalize for an incorrect path taken and let them argue about the optimum route and introduce Dijkstra's at the end.
I think context is the most important thing. No high schooler wants to be given an arbitrary graph and feel like they are doing some mundane problem on it. Put some contextual spin on the problems (perhaps locally relevant) to pique their interest and make it hit home for them as to why these are important problems/solutions.
by jmg_ on 5/23/14, 5:18 PM
+ Calculate the nth term of Fibonacci Sequence
+ Comparing the efficiency sorting algorithms
+ Calculating the resulting angles of the hands of a clock based on a digital-time input.
You could probably apply many of the easier Project Euler questions for your competition with little modification.
Alternately, if you want more computer-related problems some of the /r/dailyprogrammer exercises might be applicable (however most require a computer and programming knowledge)