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

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.