소스 검색

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