Status: Not Started
Objective
Write a method that takes an `ArrayList` and an `int value` and returns the first index at which `value` appears in the ArrayList.
If the `value` does not exist in the ArrayList, return -1
For example, if we had an `ArrayList list` wit
- Scratchpad.java
- Unit Test
Font Size
14
Parentheses autocomplete
Wrap lines
Editor
Theme
Code with blocks by default
Console Font Size
12
Console Theme
Display Server Graphics Screen
Show File Tab Bar
Debug Mode
ArrayList Search
Unit Test
1
2
public int search(ArrayList<Integer> list, int value)
{
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Output
Grading
Docs
Exercise
More
History
Video
Download
About
W
Test Cases
x/x
Pass | Test | Message | |
---|---|---|---|
- | Test results will show here. | - |
Errors:
This student is viewing this assignment in English. View this page in English?
5 points
Write a method that takes an ArrayList<Integer>
and an int value
and returns the first index at which value
appears in the ArrayList.
If the value
does not exist in the ArrayList, return -1
For example, if we had an ArrayList<Integer> list
with the values [10, 20, 30, 20]:
search(list, 20)
Should return
1
Because 20 first appears at index 1 in the ArrayList.
If we had an ArrayList<Integer> list
with the values [10, 20, 30, 20]:
search(list, 40)
Should return
-1
Because 40 does not appear in the ArrayList.
Reset Code
Upload an image
Upload from your computer
Or paste a link here
Slides and Notes
No slides available for this video
About
Java Practice (main)
Java Version 1.8.0_222