Skip to content

Commit b2d71af

Browse files
committed
moved 'Understanding Kata Questions'
1 parent d083556 commit b2d71af

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package org.teachingkidsprogramming.recipes.completed.section01forloops.KataQuestions;
2+
3+
public class understandingKatas
4+
{
5+
public static void main(String[] args) throws Exception
6+
{
7+
// Requirement: Write the USER STORIES to draw 3 pyramids
8+
// Draw a multiple sketches of your idea(s)
9+
// Decompose the sketch into one or more user stories
10+
// Write out each step in English
11+
// for example (create one pyramid, create one side)
12+
// optionally write each user story on a post it
13+
// Use a Kanban board with 'ToDo', 'Doing', 'Done'
14+
// Select the simplest user story than can be verified
15+
// Write the English, write the code and run the code
16+
// Verify - Does your code do what you expected?
17+
// Continue
18+
// Write the code one line at a time
19+
// Run your program to verify that your code works
20+
// Part Two - when you are 'done' look at your code - are there duplicate lines
21+
// Remove duplicate code by using the 'extract method' re-factoring
22+
// Understand how to pass multiple arguments to a method
23+
}
24+
}

src/main/java/org/teachingkidsprogramming/recipes/inDevelopment/firstKata.java

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)