Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
live-coding-fr
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
twitch
live-coding-fr
Commits
435dc53b
Commit
435dc53b
authored
4 years ago
by
Colin DAMON
Browse files
Options
Downloads
Patches
Plain Diff
Create conversion map
parent
72b71807
No related branches found
No related tags found
1 merge request
!37
Resolve "TCR Roman Numerals"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tcr-roman-numerals/src/main/java/fr/ippon/kata/numeral/Numerals.java
+14
-0
14 additions, 0 deletions
...umerals/src/main/java/fr/ippon/kata/numeral/Numerals.java
with
14 additions
and
0 deletions
tcr-roman-numerals/src/main/java/fr/ippon/kata/numeral/Numerals.java
+
14
−
0
View file @
435dc53b
package
fr.ippon.kata.numeral
;
import
java.util.NavigableMap
;
import
java.util.TreeMap
;
public
class
Numerals
{
private
static
final
NavigableMap
<
Integer
,
String
>
CONVERSIONS
=
buildConversions
();
public
static
String
toRoman
(
int
arabic
)
{
if
(
arabic
>=
5
)
{
...
...
@@ -13,4 +17,14 @@ public class Numerals {
return
"I"
.
repeat
(
arabic
);
}
private
static
NavigableMap
<
Integer
,
String
>
buildConversions
()
{
NavigableMap
<
Integer
,
String
>
conversions
=
new
TreeMap
<>();
conversions
.
put
(
1
,
"I"
);
conversions
.
put
(
4
,
"IV"
);
conversions
.
put
(
5
,
"V"
);
return
conversions
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment