Skip to content

Instantly share code, notes, and snippets.

View kishork2120's full-sized avatar

Kishor Kumar B M kishork2120

View GitHub Profile
@kishork2120
kishork2120 / program.js
Created June 28, 2021 16:24
Integer to Roman - leetcode solution
function intToRoman(num: number): string {
let result = '';
let programInput = num;
const staticValues = {
1:'I',
2:'II',
3:'III',
4:'IV',
5:'V',
10:'X',