Word Chain Kata
Joe Bowbeer
joe.bowbeer at gmail.com
Tue Jan 15 16:55:28 PST 2013
I updated this example to use Collectors.toList(), which is available in
binary snapshot b73.
bitbucket.org/joebowbeer/wordchainkata
On Mon, Jan 14, 2013 at 2:54 PM, Joe Bowbeer <joe.bowbeer at gmail.com> wrote:
> I wrote a Java8 version of the Word Chains problem from codekata.pragprog.com.
>
> Mercurial Project: https://bitbucket.org/joebowbeer/wordchainkata
>
> The interesting parallel piece is the method below that finds all the words that are adjacent to a given word:
>
> protected Collection<String> findNeighbors(String word) {
> return words.parallelStream().filter(s -> adjacent(s, word)).into(new ArrayDeque<String>());
> }
>
> Where words is a set of n-letter words (obtained from icon.shef.ac.uk/Moby/mwords.html) and adjacency is defined as differing in exactly one character.
>
>
> This was developed in NetBeans build #1605 for jdk8lambda and compiles and runs on jdklambda b72. I'll update this once the replacement for into() makes it into the binary snapshot...
>
>
> --Joe
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.openjdk.java.net/pipermail/lambda-libs-spec-experts/attachments/20130115/9ac0853b/attachment.html
More information about the lambda-libs-spec-experts
mailing list