Browse Source

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

Froilan Miranda 6 years ago
parent
commit
b64fa23cfd
1 changed files with 17 additions and 0 deletions
  1. 17
    0
      Week 5.md

+ 17
- 0
Week 5.md View File

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
+