Code Monkey home page Code Monkey logo

stage1-module5-task3's Introduction

Tasks

All methods below should be implemented in CollectionService class. To complete tasks use Stream API methods.

1. Stream Filter

Implement the method public List<Integer> filterEvenNumbers(List<Integer> list). It must filter list and return only even numbers. To complete the task use filter(...) method in Stream API.

2. Stream Map

Implement the method public List<String> toUpperCaseCollection(List<String> list). It must modify a list and return all values in upper case. To complete the task use map(...) method in Stream API.

3. Stream Max

Implement the method public Optional<Integer> findMax(List<Integer> list). It must find max number in the list. To complete the task use max(...) method in Stream API.

4. Stream FlatMap

Implement the method public Optional<Integer> findMin(List<List<Integer>> list). It must find min value among all lists. To complete the task use flatMap(...) and min(...) methods in Stream API.

5. Stream Reduce

Implement the method public Integer sum(List<Integer> list). It must calculate a sum of all elements in the list. To complete the task use reduce(...) method in Stream API.

stage1-module5-task3's People

Contributors

vponkratina avatar symbatdeveloper avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.