Added a missing opening bracket (#34447)
There was a missing opening bracket for the array `romans`
This commit is contained in:
committed by
Randell Dawson
parent
0a330e65f9
commit
ce17020fed
@ -144,7 +144,7 @@ You can't have more than three consecutive Roman numerals together.
|
||||
##  Intermediate Code Solution:
|
||||
|
||||
function convertToRoman(num) {
|
||||
var romans =
|
||||
var romans = [
|
||||
// 10^i 10^i*5
|
||||
["I", "V"], // 10^0
|
||||
["X", "L"], // 10^1
|
||||
|
Reference in New Issue
Block a user