Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Week2/day4/FindIntersection.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@
*
* a) Declare An Array for {3,2,11,4,6,7};
* b) Declare another Array for {1,2,8,4,9,7};
add num one by one into list.
* c) create a two empty Lists - list1 & list2
* c) Declare for loop iterator from 0 to array a.length and add into list1
* d) Declare for loop iterator from 0 to array b.length and add into another list2
* e) Compare Both list1 & list2 using a nested for loop
* e) Compare Both list1 & list2 using if condition
* 1)Print the matching number
*
*/f interface and abstract class in Automation class
*