Currently the mechanism used to display the solution is to apply a patch to the exercise file.
Whenever a change exists in the file, the patch is still applied on a modified file compared to what the patch is expecting.
A simple solution would be to git stash the file and then git stash pop once the solution is computed.
Currently the mechanism used to display the solution is to apply a patch to the exercise file. Whenever a change exists in the file, the patch is still applied on a modified file compared to what the patch is expecting.
A simple solution would be to
git stash
the file and thengit stash pop
once the solution is computed.