list tag

251 questions


1 answers
116 views
0
I'd like to know how to find the common items on the two lists

I want to know how to find only common items on the two lists. It would be nice if the -like_item_finding() returns [5]a = [1, 2, 3, 4, 5]b = [9, 8, 7, 6, 5]Find the same_item_ (a, b)

2 years ago

1 answers
126 views
0
. To create a link list in Java

What is the best way to create a link list in Java?


1 answers
103 views
0
To remove elements with all null values from an ArrayList or String array

I'd like to remove all elements that have null values from the ArrayList or String array in JavaFor me,for (Tourist t : tourists) { if (t != null) { t.setId(idForm); } }I tried turning around the ...


1 answers
107 views
0
How do I check if there is a specific value in the list in Clojure?

I want to know how to check if there is a specific value in the list in the closure.

2 years ago

1 answers
116 views
0
Java: How to read a text file

You want to read a text file with a space character delimited value. What should I do? And how do you store that read value in an array list?For example, of the text file data .1 62 4 55 5 6 77I'd lik...



1 answers
83 views
0
What is LazyList?

I can't find a reliable source code that explains what LazyList is. Help me.

2 years ago

1 answers
136 views
0
[java] I don't know how to put an array in an array list.

I want to know how to put an array in the Java arrayList. [] The square brackets are arraylist {} Braces are arrays[{array 0, array 1, array2} {array 0, array 1, array2}...{array0,array1,array2}] I wa...

2 years ago

1 answers
66 views
0
Repeating statements do not properly delete items in the list.

The code below is a function anti_vowel that removes all vowel alphabets (aeiouAEIOU) from the string. I expected it to work properly, but if you give the sample value of Hey look Words! as an input v...

2 years ago

2 answers
155 views
0
Load data from Python files into a list

I'd like to bring the file (data.txt) that has the following data to the list and process it.[skkim@master test]$ cat data.txt 0.3677630.3358440.3338430.3334080.07418670.01891320.001191960.006764490.0...

2 years ago
« - 3 - »

© 2024 OneMinuteCode. All rights reserved.