Hello everyone!
As I posted my solution for Roman Numerals exercise (aston-marcin's solution for Roman Numerals in Python on Exercism) I realized that I’ve made it with one of the approach in Dig Deeper - the “Loops over romans”.
I’d like to ask if my solution differs enough to be a part of this Dig Deeper approach? It is based on multiplications and modulo divisions in iterations, so it is similar to last example in mentioned approach, but I also posted a single line list comprehension solution (in iteration no. 2).