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
12 changes: 11 additions & 1 deletion hw1/HW1Lesson.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@

/**
* Java. Level 3. Lesson 1. Homework
*
* 1. Write a method which changes the places of the two elements of the array.
* (array can be of any reference type)
* 2. Write method which converts an array in ArrayList
* 3. "Big task" about fruits (apples, oranges) and baskets (box)
*
* @author Rudenko Aleksandr
* @version Feb 18, 2019
*/
import java.util.ArrayList;
import java.util.Arrays;

Expand Down