Parcourir la source

Merge branch 'master' of zipcode.rocks:ZipCodeWilmington/Whiteboard-Problems

Froilan Miranda il y a 6 ans
Parent
révision
b64fa23cfd
1 fichiers modifiés avec 17 ajouts et 0 suppressions
  1. 17
    0
      Week 5.md

+ 17
- 0
Week 5.md Voir le fichier

@@ -0,0 +1,17 @@
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
+### Problem 2
11
+
12
+
13
+Let linearArray be a Linear Array (unordered) with n elements and k is a positive integer such that k<=n. 
14
+
15
+Write a Java program to  insert an item into the kth position of linearArray.
16
+
17
+