Q17Single correct6 Marks24 Dec 2023
Statement: findSomething is a procedure that accepts a non-empty list of distinct integers L as input and finds the largest integer present in the input list. Choose the correct code fragment to complete the pseudocode.
```
Procedure findSomething(L)
if(length(L) == 1){
return(first(L))
}
else{
*** Fill the code ***
}
End findSomething
```
————————————————————————————————————————————————————————————