Pārlūkot izejas kodu

removed classes unneeded

L. Dolio Durant 6 gadus atpakaļ
vecāks
revīzija
e73c9da97e
4 mainītis faili ar 0 papildinājumiem un 29 dzēšanām
  1. 0
    11
      InventoryManager.java
  2. 0
    3
      InventoryManagerTest.java
  3. 0
    12
      RotateList.java
  4. 0
    3
      RotateListTest.java

+ 0
- 11
InventoryManager.java Parādīt failu

@@ -1,11 +0,0 @@
1
-
2
-/**
3
- * Finish the InventoryManager Class in the InventoryManager Package,
4
- * which manages an inventory of products. Create a product class which has a price,
5
- * id, and quantity on hand. Then create an inventory class which keeps track of various
6
- * products and can sum up the inventory value.
7
- *
8
- * Note: Inventory and InventoryManager should not be the same class!!!
9
- */
10
-public class InventoryManager {
11
-}

+ 0
- 3
InventoryManagerTest.java Parādīt failu

@@ -1,3 +0,0 @@
1
-
2
-public class InventoryManagerTest {
3
-}

+ 0
- 12
RotateList.java Parādīt failu

@@ -1,12 +0,0 @@
1
-
2
-/**
3
- * Finish the class RotateList make it subclasse the built-in List class. (Hint extends ?????)
4
- * Write a function that rotates a list by k elements.
5
- * For example [1,2,3,4,5,6] rotated by 2 becomes [3,4,5,6,1,2].
6
- * The first 2 elements where rotated to the back of the List.
7
- * If it was rotated by 3 [1,2,3,4,5,6] rotated becomes [4,5,6,1,2,3].
8
- * Try solving this without creating a copy of the list.
9
- * How many swap or move operations do you need?
10
- */
11
-public class RotateList{
12
-}

+ 0
- 3
RotateListTest.java Parādīt failu

@@ -1,3 +0,0 @@
1
-
2
-public class RotateListTest {
3
-}