techin to

Greenhorn
+ Follow
since Sep 30, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by techin to

I wasnt mad. I just wanted some help thats all whether it be considered a on basic question or not.
13 years ago
I dont understand the point of having a forum when you ask a question and sometimes tells you to read the documentation.
Obviously a person asking a question on a forum is confused about the material he has read and needs better clarification of the concept.

13 years ago
"Read the documentation" - I have but there were no examples. Just the method name and description.

"Please use code tags" - will do.
13 years ago
Thanks Jesper. I'm starting to understand it a little better now.
What I'm still fuzzy on is how to create a sublist, then retrieve from it.

So right now I have an arraylist like this.

public class MySubList
{

public static void main(String[] args)
{

ArrayList<Integer> data_set = new ArrayList<Integer>();

data_set.add(5); data_set.add(9); data_set.add(32); data_set.add(8); data_set.add(7); data_set.add(30);

}
}

But how can I create a list with sublist then print that sublist? Thanks.
13 years ago
Hi,
I am taking a data structure class and they are going over subset sublist and I'm very confused.
The only thing I remember from the class is a set of numbers and target number.

Can anyone help me understanding this concept?
I tried looking in the JAVA api but there were no examples.

Thank You.
13 years ago