summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--java/state.sql28
1 files changed, 24 insertions, 4 deletions
diff --git a/java/state.sql b/java/state.sql
index a59f11f..0fffc5b 100644
--- a/java/state.sql
+++ b/java/state.sql
@@ -5,10 +5,30 @@ CREATE TABLE `assignments` (
 );
 
 INSERT INTO `assignments` VALUES 
-    ('ArraySearch', true, true, true, true),
-    ('ArraySort', true, true, true, true),
-    ('StringOperations', true, true, true, true),
-    ('MatrixOperations', true, true, true, true);
+    ('ArraySearch', 1, 1, 1, 1),
+    ('ArraySort', 1, 1, 1, 1),
+    ('StringOperations', 1, 1, 1, 1),
+    ('MatrixOperations', 1, 1, 1, 1),
+    ('AddTwoNumbers', 0, 0, 0, 1),
+    ('CylinderCalculations', 1, 1, 1, 1),
+    ('ComplexCalculations', 1, 0, 1, 1),
+    ('FindNumberInArray', 1, 0, 0, 1),
+    ('StaticExecution', 1, 1, 1, 1),
+    ('SingletonExample', 1, 1, 0, 1),
+    ('StudentsArray', 1, 0, 0, 1),
+    ('BankAccountExample', 0, 0, 0, 1),
+    ('ShapeAreaCalculations', 1, 0, 0, 0),
+    ('AbstractShapeCalculations', 1, 0, 0, 0),
+    ('FamilyExample', 0, 0, 0, 0),
+    ('CuboidCalculations', 0, 0, 0, 0),
+    ('EmployeeDisplay', 1, 0, 0, 0),
+    ('CircularBaseExample', 0, 0, 0, 0),
+    ('InnerClassExample', 0, 0, 0, 0),
+    ('InterfaceExample', 0, 0, 0, 0),
+    ('RuntimePolymorphismExample', 0, 0, 0, 0),
+    ('PackageExample', 0, 0, 0, 0),
+    ('CustomExceptionExample', 0, 0, 0, 0),
+    ('ThreadsExample', 0, 0, 0, 0);
 
 .mode markdown
 SELECT * FROM `assignments`;