Skip to content

Commit

Permalink
Correct package names so they match question numbers in book.
Browse files Browse the repository at this point in the history
  • Loading branch information
asaph committed Oct 9, 2015
1 parent cbe304c commit 15d68a9
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
@@ -1,4 +1,4 @@
package Q3_05_Queue_via_Stacks;
package Q3_04_Queue_via_Stacks;

import java.util.Stack;

Expand Down
@@ -1,4 +1,4 @@
package Q3_05_Queue_via_Stacks;
package Q3_04_Queue_via_Stacks;

import java.util.LinkedList;
import java.util.Queue;
Expand Down
@@ -1,4 +1,4 @@
package Q3_06_Sort_Stack;
package Q3_05_Sort_Stack;

import java.util.Stack;

Expand Down
@@ -1,4 +1,4 @@
package Q3_07_Animal_Shelter;
package Q3_06_Animal_Shelter;

public abstract class Animal {
private int order;
Expand Down
@@ -1,4 +1,4 @@
package Q3_07_Animal_Shelter;
package Q3_06_Animal_Shelter;

import java.util.LinkedList;

Expand Down
@@ -1,4 +1,4 @@
package Q3_07_Animal_Shelter;
package Q3_06_Animal_Shelter;

public class Cat extends Animal {
public Cat(String n) {
Expand Down
@@ -1,4 +1,4 @@
package Q3_07_Animal_Shelter;
package Q3_06_Animal_Shelter;

public class Dog extends Animal {
public Dog(String n) {
Expand Down
@@ -1,4 +1,4 @@
package Q3_07_Animal_Shelter;
package Q3_06_Animal_Shelter;

public class Question {

Expand Down

0 comments on commit 15d68a9

Please sign in to comment.