2014 HIGH SCHOOL PROGRAMMING CONTEST. Sponsors: University of Evansville Student Chapter of ACM University of Evansville Office of Admissions

Size: px
Start display at page:

Download "2014 HIGH SCHOOL PROGRAMMING CONTEST. Sponsors: University of Evansville Student Chapter of ACM University of Evansville Office of Admissions"

Transcription

1 Sponsors: University of Evansville Student Chapter of ACM University of Evansville Office of Admissions Problem Packet STOP! Do NOT open this packet until instructed to do so! COLLEGE OF ENGINEERING AND COMPUTER SCIENCE 1

2 Problem #1: Who s Still Around? Game of Thrones is the thrilling new fantasy series that is the latest obsession. Multiple families are vying for the throne, the king's council members plot and scheme, the Night's Watch in the north is doing its best to protect the realm from invaders, and to the east, an army is amassing. However, even for the most dedicated fans, keeping up with the countless characters is very difficult. To make matters worse, it's a rotating roster new characters are introduced and old favorites are killed off with astounding frequency. To help you and your friends to keep track of them all, you decide to write a program to keep track of all the characters who are alive at one time. You decide that you should be able to add a new character, remove a character who dies, and display all of the currently living characters. When the program begins, it should print a statement welcoming the user to the program. To choose whether you want to add a character, remove a character, or list all current characters, the program should prompt the user to input a, r, or l. When the program receives an 'a', the user is prompted to add a new character by name. When it receives a 'r', the program prompts the user for the name of the character to remove. If the user tries to remove a character that does not exist, print out a statement saying that the character cannot be found or is already dead. Finally, when the program receives an 'l', it outputs a list of all current characters. If there are no characters stored in the program when the list command is given, state that all characters are dead. The total number of characters will never be greater than 150. If the user has chosen to add or remove a character, the program should prompt the user to input the character s name, which may have one or more parts separated by spaces (i.e. a first and last name or just a first name). The program repeats this until a q character is received. This means the program should quit. An example run can be seen below. Input: Character representing operation to be performed, character names Output: Result of operation COLLEGE OF ENGINEERING AND COMPUTER SCIENCE 2

3 Welcome to the Game of Thrones character index! Enter 'a', 'r', 'l', or 'q': l Everyone is dead! Enter 'a', 'r', 'l', or 'q': a Enter character name: Robert Baratheon Enter 'a', 'r', 'l', or 'q': a Enter character name: Cersei Enter 'a', 'r', 'l', or 'q': l Robert Baratheon Cersei Enter 'a', 'r', 'l', or 'q': r Enter character name: Robert Baratheon Enter 'a', 'r', 'l', or 'q': r Enter character name: Ned Stark Ned Stark not found or already dead. Enter 'a', 'r', 'l', or 'q': l Cersei Enter 'a', 'r', 'l', or 'q': q COLLEGE OF ENGINEERING AND COMPUTER SCIENCE 3

4 Problem #2: Precisely When He Means To Gandalf the Grey is never late and never early, but rather arrives precisely when he means to. However, being over 2000 years old, Gandalf is starting to have trouble remembering exactly when he means to arrive. To solve this problem, Gandalf has developed an algorithm to calculate when he means to arrive. This algorithm has the following segments: 1. The hour that Gandalf arrives is computed as day (month/2) mod The minute that Gandalf arrives is computed as ((day*year) / month) mod 60. Since Gandalf is getting on in years, he is having trouble handling all of that math in his head. He s chosen you to help him by writing a program to calculate when he means to arrives on a given a date. Gandalf uses the Shire calendar that is used by the Hobbits. In this calendar there are 12 months each having 30 days. There are 5 extra days (as well as a 6th leap day ) that belong in no month. However, Gandalf never travels on those days so you don't need to worry about them in your program. The months are listed in a table below. Your program should loop until 0 QUIT 0 is received as input. For all division operations, answers should be rounded down to the nearest integer. All times must contain two digits thus, hours and minutes less than 10 should have a leading 0 added. Hint: mod is defined as the remainder when one number is divided by another. For example, 7 mod 2 is 1. Month Name Month Name 1 Afteryule 7 Afterlithe 2 Solmath 8 Wedmath 3 Rethe 9 Halimath 4 Astron 10 Winterfilth 5 Thrimidge 11 Blotmath 6 Forelithe 12 Foreyule COLLEGE OF ENGINEERING AND COMPUTER SCIENCE 4

5 Input: Date in the form DAY MONTH YEAR (ex: 5 ASTRON 7658) in all capital letters. Output: Time at which Gandalf arrives Date: 5 ASTRON 7658 Gandalf arrives at 01:32 Date: 8 ASTRON 7659 Gandalf arrives at 16:18 Date: 10 WINTERFILTH 7660 Gandalf arrives at 16:40 Date: 1 AFTERLITHE 6543 Gandalf arrives at 01:34 Date: 0 QUIT 0 COLLEGE OF ENGINEERING AND COMPUTER SCIENCE 5

6 Problem #3: Morsican Navigation One day, while you're sitting at your desk working on your latest programming project, you hear a strange whirring sound. You spin around quickly, looking for the source of the noise as it grows louder and see the TARDIS appear in your living room. You hold your breath as the door opens and the Doctor leans out. "Well, what are you waiting for?", he says, "Get in! We haven't got all day!" You jump up, leaving your project behind without a thought, and enter the time and space traveling box. On your first journey, you travel to the Morsican System, home of the Morsicus race. The Morsicans are threatening an invasion of Earth to feast on the hopes and dreams of aspiring programmers, which is their main source of food. Unfortunately, the TARDIS navigational system is down again. You successfully made it to the edge of the planetary system, but there s no good way to get to the Morsican home planet while the navigation system is still down. Luckily for you, this system contains mostly empty space and the only object of any legitimate size is the Morsican planet. You simply need to get close so that you can see it. The Doctor goes below the console to try and repair the system, but you decide to take matters into your own hands and write a program to navigate to the planet yourself. First, ask the user for the row and column of the planet. Then, read in a path (a path is a string of characters symbolizing up (u), down (d), left (l), and right(r)). Starting in the upper left hand square of the map (which is the space (1,1)), you should test the path to see if it will succeed in getting you to the planet. You may assume the path will never go off the edge of the map. If you end on a space marked by a *, your journey is successful and you will be able to meet the Morsicans (so you should print a statement letting you know)! Otherwise, your journey fails and you should print out that you didn t make it to the planet. If you pass over the planet but don't finish on it, you do not find the planet. The program loops until a single q is entered as the path, using the same map for every path. If you want to use a new map, you need to quit and restart the program. Use the pictures to help visualize the example runs. COLLEGE OF ENGINEERING AND COMPUTER SCIENCE 6

7 Input: The row and column of the planet and a list of directions Output: A message letting you know if you reached the planet Enter the row of the planet: 4 Enter the column of the planet: 3 Please enter a path: rrrdlrllddrr You didn't get to the planet. Please enter a path: ddrurdd You got to the planet! Please enter a path: q COLLEGE OF ENGINEERING AND COMPUTER SCIENCE 7

8 Problem #4: Are You a Vampire? Your mom just landed her dream job in California, suddenly uprooting you from your home on the east coast and moving to Sunnydale. You soon become friends with Buffy the Vampire Slayer and realize that knowing how to spot a vampire from a distance is actually very important. While Buffy never worries about knowing who is a vampire and who isn't, you find yourself quite concerned. There are, of course, physical cues that can lead you to know who is a vampire, but sometimes that just is not enough. After you help Buffy, Willow, and Xander slay a few of the creeps, you start to notice that all the vampire names follow a pattern they have 3 consonants for every 2 vowels in their first name ('y' is considered a consonant). This means that Buffy, Willow, and Xander can't be vampires (you find this soothing), but that Angel and Spike certainly are vampires. For a moment you become fearful of Giles, but you quickly remember that his first name is Rupert, so he also must be a human. Using your programming skills, you decide to write a program to recognize vampires by name so that you can distribute your new knowledge to the rest of the town. When the program starts up, it should prompt the user to enter a first name. It should print out whether or not the person is a vampire or not, based on the name. Entering 'quit' as the name will end the program. Input: A first name Output: Whether or not the name belongs to a vampire Enter a name: Buffy Buffy is not a vampire! Enter a name: Spike Spike is a vampire! Enter a name: George George is not a vampire! Enter a name: Stephannie Stephannie is a vampire! Enter a name: quit COLLEGE OF ENGINEERING AND COMPUTER SCIENCE 8

9 Problem #5: The Parseltongue Conundrum Imagine you're a 4th year Hogwarts student and you have your eye on a pretty witch. After you do a bit of asking around, you discover that she has a soft spot for reptiles. One day, while trying to impress her, you casually mention that you're a Parseltongue, with the ability to speak the language of the snakes. Just one small problem you can't speak a word of Parseltongue. Rather than coming clean about your lie, you decide it can't be that hard to fake speaking Parseltongue. You decide to write a program that will translate from English to Parseltongue to help you continue to impress the witch. After a little research in the library, you discover that translating into Parseltongue isn't really that complicated. Strings of one or more consecutive vowels (including 'y') have an 'h' added to the beginning of the string, while strings of consecutive consonants have 'iss' appended to the end. Capitalization should be preserved. In the case where a capitalized word begins with a vowel, the new leading 'h' should be capitalized. For example, the world 'Harry' would become 'Hissharrisshy'. Your program should translate a single given word into Parseltongue and loop until it receives "QUIT" as an input. Input: An English word Output: That word s Parseltongue equivalent English to Parseltongue translator. Input word to translate: Do Dissho English to Parseltongue translator. Input word to translate: not nisshotiss English to Parseltongue translator. Input word to translate: Eat Heatiss English to Parseltongue translator. Input word to translate: my misshy English to Parseltongue translator. Input word to translate: friends frisshiendsiss English to Parseltongue translator. Input word to translate: QUIT COLLEGE OF ENGINEERING AND COMPUTER SCIENCE 9

10 Problem #6: Skyhook Luke Skywalker might not need to use his targeting computer to hit the exhaust port and destroy the Death Star, but he does need the help of R2 D2 s navigation computer to safely fly a spaceship through the trench, and that computer needs a program to run. The X Wing would be flying along in a straight line, but it needs to maneuver in order to avoid turbo lasers, Imperial fighters, and other hazards of outer space. Your job is to come up with a program that will find a way around these obstacles. The program accepts a list of obstacles, starting with the closest horizontally, and ending with the furthest. Each obstacle covers a square area, defined by its center point and the length of one side. Obstacles never overlap, so there is always a way through. The output is a series of points that goes from one end of the trench to the other without intersecting any obstacles. The trench extends from (0, 100) to (500, 100), and the X Wing starts at (0, 50). It can never fly above 100 or below zero, although obstacles may be placed at any location. You do not need to find the best path/set of points, only one of the possible sets. The second example in example output shows a run that would compute the path shown in the above picture. The program loops until a 0 is entered for the number of obstacles, which ends the program. Input: Numbers signifying number of obstacles and the location of the obstacles Output: A path through the obstacles COLLEGE OF ENGINEERING AND COMPUTER SCIENCE 10

11 Enter the number of obstacles: 3 Enter the obstacle s placement (centerx, centery, size): Enter the obstacle's placement (centerx, centery, size): Enter the obstacle's placement (centerx, centery, size): Path through the obstacles is (0, 50), (85, 65), (115, 65), (190, 30), (210, 30), (500, 80). Enter the number of obstacles: 5 Enter the obstacle s placement (centerx, centery, size): Enter the obstacle's placement (centerx, centery, size): Enter the obstacle's placement (centerx, centery, size): Enter the obstacle's placement (centerx, centery, size): Enter the obstacle's placement (centerx, centery, size): Path through the obstacles is (0, 50), (55, 50), (55, 55), (165, 55), (165, 25), (225, 25), (225, 50), (415, 50), (415, 40), (500, 40) Enter the number of obstacles: 0 COLLEGE OF ENGINEERING AND COMPUTER SCIENCE 11

Spin the character, decide what it can do, play a short game.

Spin the character, decide what it can do, play a short game. Spin the character, decide what it can do, play a short game. What to print: Print a set of cogs and one board per player. If desired, print the rules too. The Travel RPG What is this? Travel RPG ensures

More information

Introduction to Counting and Probability

Introduction to Counting and Probability Randolph High School Math League 2013-2014 Page 1 If chance will have me king, why, chance may crown me. Shakespeare, Macbeth, Act I, Scene 3 1 Introduction Introduction to Counting and Probability Counting

More information

POOL THE. A role-playing game by James V. West

POOL THE. A role-playing game by James V. West POOL THE A role-playing game by James V. West THE RULES The Pool is a role-playing system geared toward player and GM narrative collaboration. You can use it for any setting you like. One person in your

More information

The Beauty and Joy of Computing Lab Exercise 10: Shall we play a game? Objectives. Background (Pre-Lab Reading)

The Beauty and Joy of Computing Lab Exercise 10: Shall we play a game? Objectives. Background (Pre-Lab Reading) The Beauty and Joy of Computing Lab Exercise 10: Shall we play a game? [Note: This lab isn t as complete as the others we have done in this class. There are no self-assessment questions and no post-lab

More information

URASHIMA TARO, the Fisherman (A Japanese folktale)

URASHIMA TARO, the Fisherman (A Japanese folktale) URASHIMA TARO, the Fisherman (A Japanese folktale) (Urashima Taro is pronounced "Oo-rah-shee-ma Ta-roe") Cast: Narrator(s) Urashima Taro His Mother 3 Bullies Mother Tortoise 2 Swordfish Guards Sea King

More information

We're excited to announce that the next JAFX Trading Competition will soon be live!

We're excited to announce that the next JAFX Trading Competition will soon be live! COMPETITION Competition Swipe - Version #1 Title: Know Your Way Around a Forex Platform? Here s Your Chance to Prove It! We're excited to announce that the next JAFX Trading Competition will soon be live!

More information

Astro Bob to the Rescue

Astro Bob to the Rescue Read the passage Astro Bob to the Rescue before answering Numbers 1 through 5. UNIT 4 WEEK 4 Astro Bob to the Rescue As I watched Ari climb into the minivan, I suppressed the urge to groan. Ari was the

More information

The Sorcerer s Chamber

The Sorcerer s Chamber The Sorcerer s Chamber by Tim Schutz Rev. 2.0 2-4 players 60 minutes Game requires: One complete piecepack and One piecepack pyramid set Story Welcome to the Sorcerer s Chamber. No this is not some cozy

More information

What is the Law of Attraction?

What is the Law of Attraction? "You are what you think, not what you think you are." - Bruce MacLelland Where focus goes, energy flows. Tony Robbins What is the Law of Attraction? I m so glad to see you ve made it to Module 2. I hope

More information

BBC Learning English 6 Minute English Alien contact

BBC Learning English 6 Minute English Alien contact BBC Learning English 6 Minute English Alien contact NB: This is not a word for word transcript Hello! I m Rob and this is 6 Minute English. I m joined today by Alice. Hello Alice. Hi Rob. Today, we re

More information

HOOVER TIMES LATE SPRING 2013 HOOVER TIMES. Hoover Street Elementary School Vol. 1, No. 2. The Life of Matt Martin

HOOVER TIMES LATE SPRING 2013 HOOVER TIMES. Hoover Street Elementary School Vol. 1, No. 2. The Life of Matt Martin HOOVER TIMES Hoover Street Elementary School Vol. 1, No. 2 INSIDE THIS ISSUE Best Star Wars scene 3 An Interesting Guy 3 Star Wars! 3 Matt Martin 3 Matt Martin 4 Favorite scene 4 Chance to see Jedis 4

More information

Math Stories and Games: Logic, Patterns and Mathematical Thinking

Math Stories and Games: Logic, Patterns and Mathematical Thinking Math Stories and Games: Logic, Patterns and Mathematical Thinking Anna Shevyakova, Alexey Shevyakov............... Lesson 1. Attributes of Objects Dad, play with me, I am bored! Nicky called his father.

More information

Eleventh Annual Ohio Wesleyan University Programming Contest April 1, 2017 Rules: 1. There are six questions to be completed in four hours. 2.

Eleventh Annual Ohio Wesleyan University Programming Contest April 1, 2017 Rules: 1. There are six questions to be completed in four hours. 2. Eleventh Annual Ohio Wesleyan University Programming Contest April 1, 217 Rules: 1. There are six questions to be completed in four hours. 2. All questions require you to read the test data from standard

More information

A Rebellion. By Krystle Johnson

A Rebellion. By Krystle Johnson A Rebellion By Krystle Johnson CHARACTERS New Orleans accent. Wise. New Orleans accent. Strong. ACT I SCENE 5 (Scene opens up with Roy sitting on the ground outside of his mother s restaurant. He is beginning

More information

Lyrics for Keeper of Your Heart EP

Lyrics for Keeper of Your Heart EP Track Listing: 1. The Subway Song 2. Unpredictable 3. Angel of Mine 4. Susie 5. Keeper of Your Heart Lyrics for Keeper of Your Heart EP The Subway Song On the train on my way into the city You step on

More information

English as a Second Language Podcast ESL Podcast 200 Meeting a Deadline

English as a Second Language Podcast  ESL Podcast 200 Meeting a Deadline GLOSSARY You wanted to see me? short for Did you want to see me? ; I m here as you wanted or requested * You wanted to see me? I ve been out to lunch for the past hour. to pull out (all) the stops to give

More information

A Quick Guide To Search Engine Optimization

A Quick Guide To Search Engine Optimization A Quick Guide To Search Engine Optimization For our latest special offers, free gifts and much more, Click here to visit us now You are granted full Master Distribution Rights to this ebook. You may give

More information

NAMELESS (BROKEN CITY BOOK 1) BY JESSICA SORENSEN

NAMELESS (BROKEN CITY BOOK 1) BY JESSICA SORENSEN NAMELESS (BROKEN CITY BOOK 1) BY JESSICA SORENSEN DOWNLOAD EBOOK : NAMELESS (BROKEN CITY BOOK 1) BY JESSICA SORENSEN PDF Click link bellow and free register to download ebook: NAMELESS (BROKEN CITY BOOK

More information

Cary Sachs: â Success Requires Sacrifice'

Cary Sachs: â Success Requires Sacrifice' Cary Sachs: â Success Requires Sacrifice' 07.07.2017 "Unfortunately, you can't have it all," says Cary Sachs, president of television and streaming at Ant Farm. "You will get it all, but right now, if

More information

This book belongs to:

This book belongs to: This book belongs to: Prodigal: Welcome Home 2018 by LeaderTreks. All rights reserved. ISBN: 978-1-939031-39-6 No part of this publication may be reproduced, stored in a retrieval system, or transmitted

More information

Getting to Mars Psychological needs/concerns By: Elisabeth Ambrose

Getting to Mars Psychological needs/concerns By: Elisabeth Ambrose Getting to Mars Psychological needs/concerns By: Elisabeth Ambrose Taking a trip to Mars would be unlike anything ever experienced by humans before. As they travel away at thousands of kilometers per hour

More information

Motivation in Becoming and Being a Firefighter

Motivation in Becoming and Being a Firefighter 2017 Motivation in Becoming and Being a Firefighter By Lt. Mike Mason (Ret.) Inspired By Thinking Differently Through Military Motivation MOTIVATION IN BECOMING and BEING A FIREFIGHTER Lt. Mike Mason/Fire

More information

English as a Second Language Podcast ESL Podcast 295 Playing Video Games

English as a Second Language Podcast   ESL Podcast 295 Playing Video Games GLOSSARY fighting violent; with two or more people physically struggling against each other * In this fighting game, you can make the characters kick and hit each other in several directions. role-playing

More information

Microchess 2.0 gives you a unique and exciting way to use your Apple II to enjoy the intellectually stimulating game of chess. The complete program lo

Microchess 2.0 gives you a unique and exciting way to use your Apple II to enjoy the intellectually stimulating game of chess. The complete program lo I Microchess 2.0 gives you a unique and exciting way to use your Apple II to enjoy the intellectually stimulating game of chess. The complete program logic to play a very skillful game of chess, as well

More information

Dreams don't lie (Copyright Soundsfoolish 2006)

Dreams don't lie (Copyright Soundsfoolish 2006) Dreams don't lie (Copyright Soundsfoolish 2006) Songs to motivate and inspire you. 1. I wonder I wonder, what puts a smile on you? What you think is true, what makes you say "wow"? I wonder what has you

More information

Fairy Wings. A short sketch by Barbara Hockley. Please visit.

Fairy Wings. A short sketch by Barbara Hockley. Please visit. Fairy Wings A short sketch by Barbara Hockley Please visit www.offbeat-theatre.co.uk for Performing Rights to this work and further plays and sketches for Youth Theatres and Schools All rights reserved.

More information

CMSC 201 Fall 2018 Project 3 Sudoku

CMSC 201 Fall 2018 Project 3 Sudoku CMSC 201 Fall 2018 Project 3 Sudoku Assignment: Project 3 Sudoku Due Date: Design Document: Tuesday, December 4th, 2018 by 8:59:59 PM Project: Tuesday, December 11th, 2018 by 8:59:59 PM Value: 80 points

More information

Writing a Scholarship Essay From Fastweb.com

Writing a Scholarship Essay From Fastweb.com Writing a Scholarship Essay From Fastweb.com Keep in mind that you are asking to be selected as the representative for the group sponsoring the scholarship. You need to be sure that your essay is specifically

More information

Knowing when: It s Time for Table Talk

Knowing when: It s Time for Table Talk Knowing when: It s Time for Table Talk By: Alisa Nelson, MSW Anger management: 10 Helpful Hints to Control Anger Keeping your temper in under control can be thought provoking. Using simple anger management

More information

Instruction Manual. 1) Starting Amnesia

Instruction Manual. 1) Starting Amnesia Instruction Manual 1) Starting Amnesia Launcher When the game is started you will first be faced with the Launcher application. Here you can choose to configure various technical things for the game like

More information

ANXIETY SYMPTOMS INTERVENTION. Applying Detective Thinking to Big Worries Applying Detective Thinking to Other People s Worries

ANXIETY SYMPTOMS INTERVENTION. Applying Detective Thinking to Big Worries Applying Detective Thinking to Other People s Worries SESSION 4 ANXIETY SYMPTOMS INTERVENTION SESSION HANDOUTS Handout 4.1: Handout 4.2: Handout 4.3: Handout 4.4: Handout 4.5: Handout 4.6a: Handout 4.6b: Applying Detective Thinking to Big Worries Applying

More information

2015 ACM ICPC Southeast USA Regional Programming Contest. Division 1

2015 ACM ICPC Southeast USA Regional Programming Contest. Division 1 2015 ACM ICPC Southeast USA Regional Programming Contest Division 1 Airports... 1 Checkers... 3 Coverage... 5 Gears... 6 Grid... 8 Hilbert Sort... 9 The Magical 3... 12 Racing Gems... 13 Simplicity...

More information

16 WAYS TO MOTIVATE YOURSELF TO TAKE ACTION RIGHT NOW

16 WAYS TO MOTIVATE YOURSELF TO TAKE ACTION RIGHT NOW 16 WAYS TO MOTIVATE YOURSELF TO TAKE ACTION RIGHT NOW NOTICE: You DO NOT Have the Right to Reprint or Resell this Report! You Also MAY NOT Give Away, Sell, or Share the Content Herein Copyright AltAdmin

More information

MITOCW watch?v=6fyk-3vt4fe

MITOCW watch?v=6fyk-3vt4fe MITOCW watch?v=6fyk-3vt4fe Good morning, everyone. So we come to the end-- one last lecture and puzzle. Today, we're going to look at a little coin row game and talk about, obviously, an algorithm to solve

More information

Step 1 : Earth and Mars Orbit the Sun

Step 1 : Earth and Mars Orbit the Sun Introduction In this session you are going to learn how to programme an animation which simulates how and when spaceships are able to fly from Earth to Mars. When we send spaceships to Mars we use a Hohmann

More information

Teddy s Button PROGRAM TRACK SHEETS

Teddy s Button PROGRAM TRACK SHEETS 1 Teddy s Button PROGRAM TRACK SHEETS Updated 6/21/18 Contact: Westar Media Group, Gretchen Dill (719) 536-9000 x126 gdill@westarmediagroup.com Dear Program Director, The most popular Lamplighter book

More information

BE ALIVE Passion & Purpose Workbook

BE ALIVE Passion & Purpose Workbook BE ALIVE Passion & Purpose Workbook give your best to your life every day! www.brightspacecoaching.com Imagine how it will feel to Be Alive in the discovery of your life's passion! Ahh, the age-old question:

More information

The Hero s Journey. https://www.youtube.com/watch?v=hhk4n9a0oca

The Hero s Journey. https://www.youtube.com/watch?v=hhk4n9a0oca The Hero s Journey https://www.youtube.com/watch?v=hhk4n9a0oca Joseph Campbell Joseph Campbell, an American psychologist and myth researcher, wrote a famous book entitled The Hero with a Thousand Faces.

More information

Problem A To and Fro (Problem appeared in the 2004/2005 Regional Competition in North America East Central.)

Problem A To and Fro (Problem appeared in the 2004/2005 Regional Competition in North America East Central.) Problem A To and Fro (Problem appeared in the 2004/2005 Regional Competition in North America East Central.) Mo and Larry have devised a way of encrypting messages. They first decide secretly on the number

More information

While there are lots of different kinds of pitches, there are two that are especially useful for young designers:

While there are lots of different kinds of pitches, there are two that are especially useful for young designers: Pitching Your Game Ideas Think you ve got a great idea for the next console blockbuster? Or the next mobile hit that will take the app store by storm? Maybe you ve got an innovative idea for a game that

More information

Against all Evil. Summary: Know your enemy

Against all Evil. Summary: Know your enemy Against all Evil Know your enemy Summary: In this roleplaying game each of you will play a great hero. You fight the evil forces that threaten the land of the free people. You will fight undead and dragons,

More information

Problem N1 Star Wars Logo

Problem N1 Star Wars Logo Problem N1 Star Wars Logo Input: none Description: ASCII art is a graphic design technique that creates pictures using the 95 printable ASCII characters. Use ASCII art to display the classic Stars Wars

More information

How Do I Begin A Course in Miracles?

How Do I Begin A Course in Miracles? Transcript for the ACIM Explained video by Lisa Natoli Hi. Welcome! I m Lisa Natoli and the cofounder of the Teachers of God Foundation. I am the author of Gorgeous for God and the creator of the 40 Day

More information

My Story Can Beat Up Your Story! The Missing Chapter. Jeffrey Alan Schechter

My Story Can Beat Up Your Story! The Missing Chapter. Jeffrey Alan Schechter My Story Can Beat Up Your Story! The Missing Chapter By Jeffrey Alan Schechter 2 Copyright Notice Copyright 2012 by Jeffrey Alan Schechter. The right of Jeffrey Alan Schechter to be identified as author

More information

Advent 1. Background. Material. Movements. Words. Focus: the prophets. The basket for Advent is on one of the center shelves.

Advent 1. Background. Material. Movements. Words. Focus: the prophets. The basket for Advent is on one of the center shelves. Advent 1 Background Focus: the prophets Material The basket for Advent is on one of the center shelves. It contains: a blue felt underlay 4 blue votive candles 5 advent cards You ll also need the model

More information

Find Your Purpose Worksheet

Find Your Purpose Worksheet Find Your Purpose Worksheet From the time I was a little kid I always remember asking myself, "What am I going to be when I grow up?" or "What is my purpose in life?". I've asked myself these questions

More information

Abundance Mindset 30 day Journal Guide

Abundance Mindset 30 day Journal Guide Abundance Mindset 30 day Journal Guide Created by Sharon Hess 2017, All Rights Reserved Abundance Mindset Journal Guide As you work on self improvement, one powerful tool you can use is to journal (or

More information

SUPERNOVA! Liam felt the soil below him with his six-toed feet as he sat in the backyard of his house. Liam

SUPERNOVA! Liam felt the soil below him with his six-toed feet as he sat in the backyard of his house. Liam SUPERNOVA! DAY ZEINTH, FRAGFTH, FLRALAG Liam felt the soil below him with his six-toed feet as he sat in the backyard of his house. Liam lived on planet ZIGROTH which was flat. On the edges of his planet

More information

** The review form is also available online at whplibrary.org/review-crew ** Your Name: Book Title: Author:

** The review form is also available online at whplibrary.org/review-crew ** Your Name: Book Title: Author: ** The review form is also available online at whplibrary.org/review-crew ** Your Name: Book Title: Author: Your Review (Please write as neat as possible) (turn paper over for additional space) If you

More information

Frequently Asked Questions About the Club

Frequently Asked Questions About the Club Frequently Asked Questions About the Club March 2006 I know how to play chess, but I m not quite ready for tournament play. Would I be able to play casual, unrated games at your Club? Definitely. You re

More information

Would You Like To Earn $1000 s With The Click Of A Button?

Would You Like To Earn $1000 s With The Click Of A Button? Would You Like To Earn $1000 s With The Click Of A Button? (Follow these easy step by step instructions and you will) This e-book is for the USA and AU (it works in many other countries as well) To get

More information

Chapter & Scene Summary

Chapter & Scene Summary Chapter & Scene Summary Title A long time ago in a galaxy far far away Also sliding title explanation. Chapter 1: The Plans The galaxy is in a state of civil war. Spies for the Rebel Alliance have stolen

More information

Inside Outside Circles Outside Circles Inside. Regions Circles Inside Regions Outside Regions. Outside Inside Regions Circles Inside Outside

Inside Outside Circles Outside Circles Inside. Regions Circles Inside Regions Outside Regions. Outside Inside Regions Circles Inside Outside START Inside Outside Circles Outside Circles Inside Regions Circles Inside Regions Outside Regions Outside Inside Regions Circles Inside Outside Circles Regions Outside Inside Regions Circles FINISH Each

More information

This chapter gives you everything you

This chapter gives you everything you Chapter 1 One, Two, Let s Sudoku In This Chapter Tackling the basic sudoku rules Solving squares Figuring out your options This chapter gives you everything you need to know to solve the three different

More information

Voice & Message Banking

Voice & Message Banking Quick Facts about Voice Banking Voice banking is the process of saving recordings of your voice for future use. There are two main approaches: voice banking (creating a synthesized voice) and message banking

More information

F.A.Q. Special Guests / Events / Press Registrations Merch, Etc. General Volunteer Check-in/Check-out

F.A.Q. Special Guests / Events / Press Registrations Merch, Etc. General Volunteer Check-in/Check-out F.A.Q. Special Guests / Events / Press Registrations Merch, Etc. General Volunteer Check-in/Check-out Special Guests / Events / Press Can I interview so-and-so? Press passes were officially granted before

More information

Play Unsafe. How Improv Can Improve Your Roleplay!

Play Unsafe. How Improv Can Improve Your Roleplay! Play Unsafe How Improv Can Improve Your Roleplay! General Habits Pay Attention Energy Roleplaying Games are games of the mind, and that means you have to listen to the GM as she describes things around

More information

Windshields and Rearview Mirrors

Windshields and Rearview Mirrors Windshields and Rearview Mirrors Teaching Image One Everyone focuses on something- the past or the future. Where does your energy come from? When our dreams are bigger than our memories, we gain energy

More information

QUICKSTART COURSE - MODULE 1 PART 2

QUICKSTART COURSE - MODULE 1 PART 2 QUICKSTART COURSE - MODULE 1 PART 2 copyright 2011 by Eric Bobrow, all rights reserved For more information about the QuickStart Course, visit http://www.acbestpractices.com/quickstart Hello, this is Eric

More information

Erik Von Burg Mesa Public Schools Gifted and Talented Program Johnson Elementary School

Erik Von Burg Mesa Public Schools Gifted and Talented Program Johnson Elementary School Erik Von Burg Mesa Public Schools Gifted and Talented Program Johnson Elementary School elvonbur@mpsaz.org Water Sabers (2008)* High Heelers (2009)* Helmeteers (2009)* Cyber Sleuths (2009)* LEGO All Stars

More information

Buffy the Vampire Slayer: What it Means to be a Female Hero

Buffy the Vampire Slayer: What it Means to be a Female Hero Buffy the Vampire Slayer: What it Means to be a Female Hero It s been nearly eleven years since the end of the cult TV show Buffy the Vampire Slayer but after all this time it remains a significant contributor

More information

Would You Like To Earn $1000 s With The Click Of A Button?

Would You Like To Earn $1000 s With The Click Of A Button? Would You Like To Earn $1000 s With The Click Of A Button? (Follow these easy step by step instructions and you will) This e-book is for the USA and AU (it works in many other countries as well) To get

More information

A - Debris on the Track

A - Debris on the Track A - Debris on the Track Rocks have fallen onto the line for the robot to follow, blocking its path. We need to make the program clever enough to not get stuck! Step 1 2017 courses.techcamp.org.uk/ Page

More information

SMART GOAL SETTING. Table of Contents

SMART GOAL SETTING. Table of Contents Table of Contents Why Goal Setting Is Essential for Success in Life and Business... 2 Be SMART About Setting Your Goals... 5 Make Your Goals Specific and Action-Oriented... 8 Staying on Track with Your

More information

2. Study the local magazines, ascertain what their editors want, and learn to target your stories correctly;

2. Study the local magazines, ascertain what their editors want, and learn to target your stories correctly; Fiction writing calls for... Talent or at least, skill in writing. Imagination and creativity Good, sound English, with adequate spelling, grammar and construction. Knowledge of some tricks of the trade

More information

Lovereading4kids Reader reviews of Scarlet and Ivy: The Lost Twin by Sophie Cleverly

Lovereading4kids Reader reviews of Scarlet and Ivy: The Lost Twin by Sophie Cleverly Lovereading4kids Reader reviews of Scarlet and Ivy: The Lost Twin by Sophie Cleverly Below are the complete reviews, written by Lovereading4kids members. Ciara, age 10 This book was very sad, I loved the

More information

Problem Set Trinity University ACM High School Programming Competition April 8th, 2006

Problem Set Trinity University ACM High School Programming Competition April 8th, 2006 Problem Set Trinity University ACM High School Programming Competition April 8 th, 2006 Problem 0-2 nd Grade Homework (Don't all good things start counting as 0?) A common assignment for early grade school

More information

A Life Fulfilled. Order the complete book from. Booklocker.com.

A Life Fulfilled. Order the complete book from. Booklocker.com. Just about everyone has a bucket list - usually committed to memory. Few of us write down our list of dreams and fewer still develop a plan to achieve their desires. A Life Fulfilled will help guide you

More information

Buffy: Demons Of The Hellmouth (Buffy The Vampire Slayer) Download Free (EPUB, PDF)

Buffy: Demons Of The Hellmouth (Buffy The Vampire Slayer) Download Free (EPUB, PDF) Buffy: Demons Of The Hellmouth (Buffy The Vampire Slayer) Download Free (EPUB, PDF) Demons of the Hellmouth is a fully licensed guide to the vampires and other demons that flocked to the Sunnydale Hellmouth

More information

ACM International Collegiate Programming Contest 2010

ACM International Collegiate Programming Contest 2010 International Collegiate acm Programming Contest 2010 event sponsor ACM International Collegiate Programming Contest 2010 Latin American Regional Contests October 22nd-23rd, 2010 Contest Session This problem

More information

ON THE BRIDGE IN THE MIDDLE OF A DIALOGUE BETWEEN HARRY AND TOM PARIS.

ON THE BRIDGE IN THE MIDDLE OF A DIALOGUE BETWEEN HARRY AND TOM PARIS. STAR TREK VOYAGER EPISODE: MIND OVER MATTER SUMMARY: THIS EPISODE WILL FOCUS ON A FEW EVENTS IN PRIOR EPISODES AND BRING TO LIGHT AN INTERESTING SITUATION. THE HEART OF THE EPISODES WILL BE FOCUSED ON

More information

Brantlee Richter Spotlight Transcribed: Alex

Brantlee Richter Spotlight Transcribed: Alex Richter Spotlight Transcribed: Alex I m here today with Dr. Spakes Richter. Member of the academy of distinguished teaching scholars and teacher of the year for 2015 2016 academic year. And we re going

More information

Terms and Conditions

Terms and Conditions 1 Terms and Conditions LEGAL NOTICE The Publisher has strived to be as accurate and complete as possible in the creation of this report, notwithstanding the fact that he does not warrant or represent at

More information

2009 ACM ICPC Southeast USA Regional Programming Contest. 7 November, 2009 PROBLEMS

2009 ACM ICPC Southeast USA Regional Programming Contest. 7 November, 2009 PROBLEMS 2009 ACM ICPC Southeast USA Regional Programming Contest 7 November, 2009 PROBLEMS A: Block Game... 1 B: Euclid... 3 C: Museum Guards... 5 D: Knitting... 7 E: Minesweeper... 9 F: The Ninja Way... 10 G:

More information

THE KICKSTART: HOW IT WORKS + WHERE TO GO FOR WHAT

THE KICKSTART: HOW IT WORKS + WHERE TO GO FOR WHAT THE KICKSTART: HOW IT WORKS + WHERE TO GO FOR WHAT Hello my lovely! Welcome to the Free Range Kickstart. This guide is your intro to how this works, and how to get the most from it. 1. The Clubhouse The

More information

Scratch for Beginners Workbook

Scratch for Beginners Workbook for Beginners Workbook In this workshop you will be using a software called, a drag-anddrop style software you can use to build your own games. You can learn fundamental programming principles without

More information

AR: That s great. It took a while for you to get diagnosed? It took 9 years?

AR: That s great. It took a while for you to get diagnosed? It took 9 years? When it comes to it, I just end up describing myself as a battery that needed to be charged I would other teens to know that they aren t alone, and that there are ways that you can manage mito. You have

More information

BALDWIN WALLACE UNIVERSITY 2016 HIGH SCHOOL PROGRAMMING CONTEST

BALDWIN WALLACE UNIVERSITY 2016 HIGH SCHOOL PROGRAMMING CONTEST BALDWIN WALLACE UNIVERSITY 2016 HIGH SCHOOL PROGRAMMING CONTEST DO NOT OPEN UNTIL INSTRUCTED TO DO SO The Last Human Left The children of Winterfell love to play a game called Human-White Walker. The game

More information

Quick fixes 20 quick, easy ways to stop feeling anxious AND stop cravings.

Quick fixes 20 quick, easy ways to stop feeling anxious AND stop cravings. Hello! Welcome to the workbook for the Anxiety and Overeating Workshop. If you haven t seen it already, make sure you watch the workshop. A lot of what s in this workbook is explained there as well as

More information

English as a Second Language Podcast ESL Podcast 198 Starting a Band

English as a Second Language Podcast   ESL Podcast 198 Starting a Band GLOSSARY band a group of people who play musical instruments * The band played all night and got a lot of people onto the dance floor. musician someone who plays a musical instrument and makes music *

More information

I am sure you are wondering, why am I contemplating doing something this crazy?! How on earth can I jump 15,000 feet?!

I am sure you are wondering, why am I contemplating doing something this crazy?! How on earth can I jump 15,000 feet?! Dear Skydiver, Welcome to one of the most exhilarating and worthwhile ventures you will ever take on. Having taken part in 2015 and watched many others take the leap of faith over the last 2 years, I can

More information

Tamim Ansary. Illustrations by Derrick Williams

Tamim Ansary. Illustrations by Derrick Williams Tamim Ansary Illustrations by Derrick Williams i Vanished! Table of Contents Introduction.............................. v Missing in Action.......................... 1 Jerrold Potter............................

More information

Daily Announcements. M T W Th F

Daily Announcements. M T W Th F Daily Announcements A week of Never Giving Up! Make it a NEVER GIVE UP WEEK at school! Read an announcement every day of the week to reinforce the theme. Announcements can be made by the principal, the

More information

INTRODUCTION GUIDE TO BLOXELS

INTRODUCTION GUIDE TO BLOXELS INTRODUCTION GUIDE TO BLOXELS Bloxels is designed to empower young game designers, artists, story tellers, and kids alike to create their own video games. Meet Bloxels, a first of its kind technology that

More information

Phone Interview Tips (Transcript)

Phone Interview Tips (Transcript) Phone Interview Tips (Transcript) This document is a transcript of the Phone Interview Tips video that can be found here: https://www.jobinterviewtools.com/phone-interview-tips/ https://youtu.be/wdbuzcjweps

More information

ENEMY LINES: NAVIGATOR BOOK ONE BY SD TANNER DOWNLOAD EBOOK : ENEMY LINES: NAVIGATOR BOOK ONE BY SD TANNER PDF

ENEMY LINES: NAVIGATOR BOOK ONE BY SD TANNER DOWNLOAD EBOOK : ENEMY LINES: NAVIGATOR BOOK ONE BY SD TANNER PDF ENEMY LINES: NAVIGATOR BOOK ONE BY SD TANNER DOWNLOAD EBOOK : ENEMY LINES: NAVIGATOR BOOK ONE BY SD TANNER PDF Click link bellow and free register to download ebook: ENEMY LINES: NAVIGATOR BOOK ONE BY

More information

PLANETOID PIONEERS: Creating a Level!

PLANETOID PIONEERS: Creating a Level! PLANETOID PIONEERS: Creating a Level! THEORY: DESIGNING A LEVEL Super Mario Bros. Source: Flickr Originally coders were the ones who created levels in video games, nowadays level designing is its own profession

More information

DESTINY OF THE DALEKS

DESTINY OF THE DALEKS DESTINY OF THE DALEKS with Tom Baker...The Doctor Lalla Ward...Romana Tim Barlow...Tyssan Peter Straker...Cmdr. Sharrel Suzanne Danielle...Agella Tony Osoba...Lan David Gooderson...Davros Penny Casdagli...Jall

More information

Q. Why did you want to go into space? A. I can t imagine not wanting to go into space. But I never considered being an astronaut as an option because

Q. Why did you want to go into space? A. I can t imagine not wanting to go into space. But I never considered being an astronaut as an option because Ellen Ochoa is the first Hispanic American woman to fly in space. She is also an inventor of optical and robotic devices. She was interviewed by fifth-grade students. Q. What are your Hispanic roots? Did

More information

Welcome to Lego Rovers

Welcome to Lego Rovers Welcome to Lego Rovers Aim: To control a Lego robot! How?: Both by hand and using a computer program. In doing so you will explore issues in the programming of planetary rovers and understand how roboticists

More information

Before we start, I want to share with you how this challenge came to be.

Before we start, I want to share with you how this challenge came to be. Hey! Thank you for signing up for my Next Level Instagram Challenge! This 7 day challenge will grow your account but not without some work. What kind of work? In this challenge, you will be engaging (following,

More information

martin wallace rules book MAD SCIENTISTS AND ATOMIC MONSTERS ATTACK THE earth

martin wallace rules book MAD SCIENTISTS AND ATOMIC MONSTERS ATTACK THE earth martin wallace rules book MAD SCIENTISTS AND ATOMIC MONSTERS ATTACK THE earth moongha invaders thegamersgame #1 Moongha invaders MAD SCIENTISTS AND ATOMIC MONSTERS ATTACK THE earth! game design: Martin

More information

Southeastern European Regional Programming Contest Bucharest, Romania Vinnytsya, Ukraine October 21, Problem A Concerts

Southeastern European Regional Programming Contest Bucharest, Romania Vinnytsya, Ukraine October 21, Problem A Concerts Problem A Concerts File: A.in File: standard output Time Limit: 0.3 seconds (C/C++) Memory Limit: 128 megabytes John enjoys listening to several bands, which we shall denote using A through Z. He wants

More information

Page 1 of 33. Star Wars: The Last Jedi Table Guide By ShoryukenToTheChin

Page 1 of 33. Star Wars: The Last Jedi Table Guide By ShoryukenToTheChin Page 1 of 33 Star Wars: The Last Jedi Table Guide By ShoryukenToTheChin 8 9 10 11 13 15 12 14 3 5 6 2 4 7 1 Page 2 of 33 Key to Table Overhead Image 1. Left Orbit 2. Left Ramp 3. Left Mini Loop 4. Centre

More information

Information Guide. This Guide provides basic information about the Dead Trigger a new FPS action game from MADFINGER Games.

Information Guide. This Guide provides basic information about the Dead Trigger a new FPS action game from MADFINGER Games. Information Guide This Guide provides basic information about the Dead Trigger a new FPS action game from MADFINGER Games. Basic Info: Game Name: Dead Trigger Genre: FPS Action Target Platforms: ios, Android

More information

Annex IV - Stencyl Tutorial

Annex IV - Stencyl Tutorial Annex IV - Stencyl Tutorial This short, hands-on tutorial will walk you through the steps needed to create a simple platformer using premade content, so that you can become familiar with the main parts

More information

Oi! You lot! Yes, you lot! Now pay attention, that s it, and look up. Yes up! Right up! Into the sky. That s it.

Oi! You lot! Yes, you lot! Now pay attention, that s it, and look up. Yes up! Right up! Into the sky. That s it. Part One Oi! You lot! Yes, you lot! Now pay attention, that s it, and look up. Yes up! Right up! Into the sky. That s it. That's it. You see that mauve thing floating in space above the Earth? Looks a

More information

9 Financially Devastating Mistakes Most Option Traders Make

9 Financially Devastating Mistakes Most Option Traders Make 9 Financially Devastating Mistakes Most Option Traders Make Fortunes have been made and lost in the world of option trading. And those fortunes that were lost may very well have been lost due to making

More information

START YOUR DAY WITH POWER By Robert G. Allen

START YOUR DAY WITH POWER By Robert G. Allen START YOUR DAY WITH POWER By Robert G. Allen Welcome to a new day. Imagine how a few minutes you invest in yourself right now will make the rest of your day more focused, confident and productive. Let

More information

Speak English Now! English Business Phone Calls. Episode #045. With No Grammar and No Textbooks!

Speak English Now! English Business Phone Calls. Episode #045. With No Grammar and No Textbooks! Speak English Now! The Podcast That Will Help You Speak English Fluently. With No Grammar and No Textbooks! Episode #045 English Business Phone Calls Get more lessons at: SpeakEnglishPod.com 1 Hi, everyone!

More information