Untitled

 avatar
unknown
plain_text
a year ago
1.0 kB
3
Indexable
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
import java.util.function.Function;

public class _07_FindTheSmallestElement {

    public static void main(String[] args) {

        Scanner scanner = new Scanner(System.in);

        List<Integer> numbers = Arrays.stream(scanner.nextLine().split("\\s+"))
                .map(Integer::parseInt)
                .toList();

        // Function: аргумент -> извършва се действие с този аргумент и връща резултат
        Function<List<Integer>, Integer> function = listOfNumbers -> Collections.min(listOfNumbers);

        Integer minValue = function.apply(numbers);

        // 5 6 7 1 8 5 1 3
        //System.out.println(numbers.indexOf(minValue)); // получавам първата повява за този елемент
        System.out.println(numbers.lastIndexOf(minValue)); // получавам последната повява за този елемент
    }
}
Editor is loading...
Leave a Comment