Parcourir la source

addding to repo

L. Dolio Durant il y a 6 ans
Parent
révision
24bb8513f0
1 fichiers modifiés avec 18 ajouts et 0 suppressions
  1. 18
    0
      Week 5.md

+ 18
- 0
Week 5.md Voir le fichier

@@ -0,0 +1,18 @@
1
+## Week 5
2
+### Problem 1
3
+
4
+Consider linearArray is a linear array with n elements and k is a positive integer such that k<=n. 
5
+
6
+Write a Java program to delete an element available at the kth position of linearArray.
7
+
8
+
9
+```
10
+
11
+### Problem 2
12
+
13
+
14
+Let linearArray be a Linear Array (unordered) with n elements and k is a positive integer such that k<=n. 
15
+
16
+Write a Java program to  insert an item into the kth position of linearArray.
17
+
18
+```