Convert Roman numeral to Integer - LeetCode Interview Coding Challenge [Java Brains]

preview_player
Показать описание
Interview Question: Convert Roman numeral in a String value to an integer

Difficulty level: Easy
Language: Java

Welcome to the Java Brains Java Interview challenge series of videos where we tackle various coding challenges ranging from the beginner level to advanced level - especially in the context of coding interviews.

Any coding problems you would like me to explore? Please let me know in the comments what you think!

#java #interview #javabrains
Рекомендации по теме
Комментарии
Автор

I was unable to fully make it by myself, kind of had the same approach but more complicated and less functional, learned a lot from your approach thank you!

centurion
Автор

Loving these problem solving videos. Keep 'em coming :D

vishal
Автор

Love this channel! <3 Amazing explanations, intuitive approach to solutions. I wish you create a playlist on how to tackle Graphs, DP, Backtracking topics. Your teaching style is awesome!

SomeoneAlive
Автор

You start recording more question like this and solve them will help us get different approach .
thanks

arpitagarwal
Автор

Thank you. this is the simple approach with a good explanation, but you will use less memory and less time if you use arrays, I think the (hashed) map lookup is a bit more expensive in this respect. since we will be using a fixed size small array of constant values/chars. However, this solution is correct.

DougieMuringani
Автор

CCXLVIII = 248 u have shown CCXLVII i.e 247 however that doesn't affect anything but thanks keep making this kind of problem solving videos

lalitvavdara
Автор

Really thanks man, for this so crystal clear explanation.... my first video forced ....me to hit subscribe...thanks again...

ritikbhardwaj
Автор

Please continue for some more questions. It's really appreciate your efforts

SurendraBabuK
Автор

Please upload problems related to dynamic programming and greedy approach and divide and conquer, Huffman coding.. i am grateful to you for this incredible video.

namratam
Автор

This made me take more interest in programming

namratam
Автор

Very good explanation, to the point. Thank you.

GagandeepSingh-lzbg
Автор

thank you very much sir for this video

saddamahmad
Автор

Honestly this is the first time I've understood this problem after watching this video. Great explanation!

caseycampbell
Автор

Please do a video about remember me option with session expire problem. You are an awesome teacher.

maarif
Автор

Wow I like the way you explained it. <3

YazhShah
Автор

Doesn't he sounds like Rohit from Koi Mil Gaya...Aaila Jaadu

adeshgaikwad
Автор

Sir please make a video on how to get all permutations of a string.
Please solve it without recursion.

shubhamsaurabh
Автор

Please cover strings, arrays, collections use of construcors, if very strong oops and some concepts, the main idea can be or agenda can be your explanation /easy way can boost confidence to code

learntech
Автор

Int number = 0;
Char[] roman = RomanNum.getChar();
For(int I = 0, i++, i< roman.length())
{
Switch roman[i] {
Case: "M"
NUMBER += 1000;
CASE: "V"
Number += 5;
... }
Return new Integer(number);

SuperYouthful
Автор

Bro I need the 150 interview questions on leetcode from you, Man great explaination

Ariesgod