L. Dolio Durant 6 anni fa
parent
commit
24bb8513f0
1 ha cambiato i file con 18 aggiunte e 0 eliminazioni
  1. 18
    0
      Week 5.md

+ 18
- 0
Week 5.md Vedi File

@@ -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
+```