Skip to content

Instantly share code, notes, and snippets.

View adityachaudhari's full-sized avatar
🎯
Focusing

Aditya Chaudhari adityachaudhari

🎯
Focusing
View GitHub Profile
@adityachaudhari
adityachaudhari / ReduceUnderstanding.java
Last active October 17, 2021 09:26
reduce in java 8 understanding example code
package com.java8.streams;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
public class ReduceUnderstanding {
public static void main(String[] args) {
@adityachaudhari
adityachaudhari / MapAndFlapMapUnderstanding.java
Created October 17, 2021 11:51
Understand difference between map and flatmap
package com.java8.streams;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
public class MapAndFlapMapUnderstanding {
public static void main(String[] args) {