Text Justification

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ส.ค. 2024
  • Please consume this content on nados.pepcoding.com for a richer experience. It is necessary to solve the questions while watching videos, nados.pepcoding.com enables that.
    NADOS also enables doubt support, career opportunities and contests besides free of charge content for learning. Pepcoding has taken the initiative to provide counselling and learning resources to all curious, skillful and dedicated Indian coders. This video is part of the series to impart industry-level web development and programming skills in the community.
    We also provide professional courses with live classes and placement opportunities.
    For more free study resources and information about the courses, visit: www.pepcoding....
    Have a look at our result: www.pepcoding....
    Follow us on our TH-cam page: / pepcoding
    Follow us on our FB page: / pepcoding
    Follow us on Instagram: / pepcoding
    Follow us on LinkedIn: / pepcoding-education
    Follow us on Pinterest: / _created
    Follow us on Twitter: home
    .
    .
    .
    Happy Programming !!! Pep it up
    .
    .
    .
    #pepcoding #code #coder #codinglife #programming #coding #java #freeresources #datastrucutres #pepcode #competitive #competitiveprogramming #softwareengineer #engineering #engineer

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

  • @anshukumari6226
    @anshukumari6226 หลายเดือนก่อน

    Thanks !!

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

    Best ❤

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

    nicee

  • @rjrobinjames
    @rjrobinjames 2 ปีที่แล้ว +6

    Bhai explanation ho to aisi. Those compilation/runtime errors really helped understand the corner cases. Really appreciate it! Keep up the good work!

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

      Really glad that you guys are getting helped by this. For much better experience a nd precisely arranged content visit on nados.io

  • @audaciouspert1772
    @audaciouspert1772 2 ปีที่แล้ว +4

    Finally the best tutorial on this problem. Thanks man! I appreciate it.

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

    Explaination ho to essi❤

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

    Its my first hard level qustion that i can understand in single view.
    Great Explanation.

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

    Thank you so much sir this was much awaited
    Please make a video on the DP version of this problem too - word wrap problem

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

    Fails for Test case with more than 1 word in last line.

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

    Awesome explanation

  • @nehanigam4997
    @nehanigam4997 2 ปีที่แล้ว +1

    nice explanation.

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

      For better experience check this content on nados.pepcoding.com

  • @shreyasingh1960
    @shreyasingh1960 2 ปีที่แล้ว +1

    c++ solution btado yar

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

      I can share it you want now ?

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

      #include
      #include
      using namespace std;
      class Solution {
      public:
      vector fullJustify(vector& words, int maxWidth) {
      vector ans;
      int n = words.size();
      int idx = 0;
      while (idx < n) {
      int lineStart = idx;
      int lineLength = words[idx].size();
      idx++;
      // Keep adding words to the current line as long as they fit within maxWidth
      while (idx < n && lineLength + 1 + words[idx].size()

  • @architsinha4272
    @architsinha4272 2 ปีที่แล้ว +1

    10 mistakes in one code.

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

    didn't understand properly😵‍💫

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

      pay more attention