浏览代码

addding to repo

L. Dolio Durant 6 年前
父节点
当前提交
24bb8513f0
共有 1 个文件被更改,包括 18 次插入0 次删除
  1. 18
    0
      Week 5.md

+ 18
- 0
Week 5.md 查看文件

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