Last active
March 21, 2017 16:48
-
-
Save odrotbohm/714b46e78b1b575a099e9f9c6d0af5f3 to your computer and use it in GitHub Desktop.
FizzBuzz functional style inspired by @Dierk's talk on Frege
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* FizzBuzz functional style. Inspired by @mittie's Frege talk and @kevlinhenney. | |
* | |
* Uses Protonpack's {@code StreamUtils} for zipping | |
* | |
* @see https://github.com/poetix/protonpack | |
*/ | |
public class FizzBuzz { | |
public static void main(String[] args) { | |
Stream<String> numbers = IntStream.iterate(1, i -> i + 1).mapToObj(String::valueOf); | |
Stream<String> fizzes = cycle("", "", "fizz"); | |
Stream<String> buzzes = cycle("", "", "", "", "buzz"); | |
Stream<String> fizzbuzz = StreamUtils.zip(fizzes, buzzes, String::concat); | |
Stream<String> zipped = StreamUtils.zip(numbers, fizzbuzz, FizzBuzz::max); | |
zipped.limit(100).forEach(System.out::println); | |
} | |
public static <T> Stream<T> cycle(T... elements) { | |
return Stream.iterate(Arrays.asList(elements), i -> i).flatMap(it -> it.stream()); | |
} | |
public static <T extends Comparable<T>> T max(T left, T right) { | |
return left.compareTo(right) > 0 ? left : right; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 | |
2 | |
fizz | |
4 | |
buzz | |
fizz | |
7 | |
8 | |
fizz | |
buzz | |
11 | |
fizz | |
13 | |
14 | |
fizzbuzz | |
16 | |
17 | |
fizz | |
19 | |
buzz | |
fizz | |
22 | |
23 | |
fizz | |
buzz | |
26 | |
fizz | |
28 | |
29 | |
fizzbuzz | |
31 | |
32 | |
fizz | |
34 | |
buzz | |
fizz | |
37 | |
38 | |
fizz | |
buzz | |
41 | |
fizz | |
43 | |
44 | |
fizzbuzz | |
46 | |
47 | |
fizz | |
49 | |
buzz | |
fizz | |
52 | |
53 | |
fizz | |
buzz | |
56 | |
fizz | |
58 | |
59 | |
fizzbuzz | |
61 | |
62 | |
fizz | |
64 | |
buzz | |
fizz | |
67 | |
68 | |
fizz | |
buzz | |
71 | |
fizz | |
73 | |
74 | |
fizzbuzz | |
76 | |
77 | |
fizz | |
79 | |
buzz | |
fizz | |
82 | |
83 | |
fizz | |
buzz | |
86 | |
fizz | |
88 | |
89 | |
fizzbuzz | |
91 | |
92 | |
fizz | |
94 | |
buzz | |
fizz | |
97 | |
98 | |
fizz | |
buzz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here's a Javaslang version (Gist):
Output: