Skip to content

Commit

Permalink
Diamond: add starter implementation. (#1001)
Browse files Browse the repository at this point in the history
* Diamond: add starter implementation.

* Add import statement
  • Loading branch information
sjwarner-bp authored and FridaTveit committed Nov 16, 2017
1 parent 679875d commit 89fe95e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Empty file.
9 changes: 9 additions & 0 deletions exercises/diamond/src/main/java/DiamondPrinter.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import java.util.List;

class DiamondPrinter {

List<String> printToList(char a) {
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
}

}

0 comments on commit 89fe95e

Please sign in to comment.