Strings - Roman Numerals to Integer using C++

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ธ.ค. 2024

ความคิดเห็น • 30

  • @codewhoop
    @codewhoop  7 ปีที่แล้ว

    Website Link: www.codewhoop.com/string/roman-numerals-to-integer.html
    Support Us: www.patreon.com/codewhoop

  • @kriptoedits9978
    @kriptoedits9978 3 ปีที่แล้ว +1

    Excellent explanation

  • @roshanpandey738
    @roshanpandey738 2 ปีที่แล้ว

    there are so many solutions on the internet but every soln is so tuff but you mde it so simple

  • @Abhinavkmr
    @Abhinavkmr 5 ปีที่แล้ว +2

    nicely explained Thanks

  • @nash6035
    @nash6035 7 ปีที่แล้ว +3

    Good, simple logic and clear explanation!

    • @codewhoop
      @codewhoop  7 ปีที่แล้ว

      Thank you !!

  • @upendraraj1091
    @upendraraj1091 2 ปีที่แล้ว

    Thanku Sir, for very smoothly explanation 😍🥳

  • @champion5946
    @champion5946 2 ปีที่แล้ว

    Good Explaination

  • @darellarocho5729
    @darellarocho5729 2 ปีที่แล้ว

    Wow you are amazing at explaining!

  • @Ibrahimlwaad
    @Ibrahimlwaad 3 ปีที่แล้ว +1

    thank you !

  • @pankajkumar-zw3to
    @pankajkumar-zw3to 3 ปีที่แล้ว

    excellent explanation thanks

  • @harrykramer9638
    @harrykramer9638 6 ปีที่แล้ว +3

    Doesn't catch improperly formatted roman numerals such as IIIIIII your program will return 7, but that is not a proper roman numeral. Seven is written as VII .

    • @100lolerty
      @100lolerty 3 ปีที่แล้ว +1

      @The Center of the Universe that's not all, if we get something like IXIXIXIX the program will still accept it despite the fact that it's incorrect.

  • @kanakagrawal5042
    @kanakagrawal5042 3 ปีที่แล้ว

    HELPFUL!!

  • @knowledgeworld448
    @knowledgeworld448 8 ปีที่แล้ว

    amazing sir keep it up

    • @codewhoop
      @codewhoop  8 ปีที่แล้ว +1

      Thank you !

  • @mounikak3818
    @mounikak3818 4 ปีที่แล้ว

    this code is not running in leetcode page giving wrong ans and showing error control may reach end of non viod func

    • @mounikak3818
      @mounikak3818 4 ปีที่แล้ว

      why dont you show with classes in leet code

    • @darellarocho5729
      @darellarocho5729 2 ปีที่แล้ว

      Because it's not supposed to be a void function.

    • @ben-hn2ek
      @ben-hn2ek 2 ปีที่แล้ว

      Because the main fn is hidden in leet code

  • @LV-ei1ce
    @LV-ei1ce 6 ปีที่แล้ว +1

    I gave input 3, it failed. gave me back 51 as the answer from your code.

    • @detective1723
      @detective1723 3 ปีที่แล้ว +1

      3 to 51 is from char to ascii.

  • @kashishsingh1838
    @kashishsingh1838 2 ปีที่แล้ว

    If I input str=XXIL then it's giving the output as 69, but the correct output should be 71.

    • @viola_case
      @viola_case 2 ปีที่แล้ว

      That's not a valid Roman integer anyway; L should come before the Xs and the I should come last, otherwise the algorithm treats the small before the large as a subtraction.

  • @knowledgeworld448
    @knowledgeworld448 8 ปีที่แล้ว

    but you hav to compile this on compiler for our conveince kindly..

    • @codewhoop
      @codewhoop  8 ปีที่แล้ว

      Hey, I have provided the link to the .cpp file for the program in the description. You can easily download and compile it :)

  • @vadka1997
    @vadka1997 ปีที่แล้ว

    Unfortunately, this code is wrong solution to a problem.

  • @RandomLyricsGuy-y5r
    @RandomLyricsGuy-y5r 3 ปีที่แล้ว +1

    II=2

  • @elijerupadilla7386
    @elijerupadilla7386 5 ปีที่แล้ว

    Can you help me to convert 30000 to roman numerals

    • @darellarocho5729
      @darellarocho5729 2 ปีที่แล้ว

      His code should work exactly the same.