lots of exercises in java... from https://github.com/exercism/java
Kyle Pu e309bffb00
Update version
6 years ago
..
.meta Update version 6 years ago
src update markdown ref solution and add initial solution 6 years ago
README.md Inline the exercise README insert (#1290) 6 years ago
build.gradle add markdown exercise to track 6 years ago

README.md

Markdown

Refactor a Markdown parser.

The markdown exercise is a refactoring exercise. There is code that parses a given string with Markdown syntax and returns the associated HTML for that string. Even though this code is confusingly written and hard to follow, somehow it works and all the tests are passing! Your challenge is to re-write this code to make it easier to read and maintain while still making sure that all the tests keep passing.

It would be helpful if you made notes of what you did in your refactoring in comments so reviewers can see that, but it isn't strictly necessary. The most important thing is to make the code better!

Running the tests

You can run all the tests for an exercise by entering

$ gradle test

in your terminal.

Submitting Incomplete Solutions

It's possible to submit an incomplete solution so you can see how others have completed the exercise.