Reverse Words in a String III - Leetcode 557 - Python

Поделиться
HTML-код
  • Опубликовано: 26 ноя 2024

Комментарии • 20

  • @danielsun716
    @danielsun716 Год назад +7

    From previous neetcode's solutions and some of my project experience, I would like to append an extra space string at the end. In this case, we will not consider that edge case
    And I have to say this is really a good problem to practice how to deal with string, cause this kind of problem is very common to be asked as the 1st interview question.
    One quick hint is that better be not modify any data in the original param given, maybe copy a new one is a good choice ,that is a detail.
    class Solution:
    def reverseWords(self, s: str) -> str:
    # adding extra ' '
    data = s + ' '
    data = list(data)
    l = 0
    for r in range(len(data)):
    if data[r] == ' ':
    start, end = l, r - 1
    while start < end:
    data[start], data[end] = data[end], data[start]
    start += 1
    end -= 1
    l = r + 1
    data = data[:-1]
    return ''.join(data)
    # built-in function
    data = s.split(' ')
    for i in range(len(data)):
    new_str_list = list(reversed(data[i]))
    new_str = ''.join(new_str_list)
    data[i] = new_str
    return ' '.join(data)

    • @simonhauguel9806
      @simonhauguel9806 Год назад +1

      For your "built-in" solution, consider generator-comprehension/map instead of the false "good" pattern "for i in range(len(X))"
      So, something like this :
      " ".join(a[::-1] for a in s.split())

  • @koalakakes
    @koalakakes Год назад +2

    This was the first problem in my senior security engineer interview. (the other problem was practical terraform work in AWS which was way more applicable)

  • @yahyaa4499
    @yahyaa4499 Год назад +6

    We can also concatenate an empty space at the end of the string first to tackle the edge case right?

  • @SyWill0
    @SyWill0 Год назад +4

    Good video and explinations. Liked most of it. Honestly, the only thing I strongly disagree with is the idea that somehow, by using functions included in std library, you are somehow going against the spirit of the question somehow.
    I have been a coder for a long while, and the whole reason std libraries exist in any language is to provide an easier yes and most the time more efficient way to accomplish a goal. There's no rhym or reason to reinvent a wheel, especially if you're trying and make a square one. Work smarter, not harder always. I've never seen in a production env most normal coders go oh i dont think reverse func is optmimal in std lib let me rewrite it lol. Good work, though. appreciate the content.

    • @asrahussain8642
      @asrahussain8642 Год назад

      he's talking about showcasing skills in interviews

    • @koalakakes
      @koalakakes Год назад +1

      Yeah i highly disagree with the way he went about this. Over-complicating the problem doesnt give someone bonus points when im interviewing

  • @krateskim4169
    @krateskim4169 Год назад +1

    Man your voice is just so soothing.

  • @jamesarthurkimbell
    @jamesarthurkimbell Год назад +1

    Are there really interviewers who would ban the use of split and join? I can imagine saying "okay, do it once with them, and now let's say what if you roll your own..." but to paint these super basic python methods as "cheating" just seems off

    • @NeetCodeIO
      @NeetCodeIO  Год назад +1

      It would depend on the problem. If you use them the solution to this problem is a one liner, so it's reasonable for a interviewer to disallow them I think

  • @christiancompiles5549
    @christiancompiles5549 Год назад

    Nice video!

  • @rohanchess8332
    @rohanchess8332 Год назад

    Apparently I thought my solution had better memory complexity but it did not
    class Solution:
    def reverseWords(self, s: str) -> str:
    prev = 0
    res = ""
    for i in range(len(s)):
    if s[i] == " ":
    for j in range(i-1, prev-1, -1):
    res += s[j]
    res += " "
    prev = i+1

    for j in range(len(s)-1, prev-1, -1):
    res += s[j]
    return res

  • @UIEngineering101
    @UIEngineering101 Год назад

    Hey man what are these tools that you use to author these videos?

  • @pseudounknow5559
    @pseudounknow5559 Год назад +1

    Can we use a stack ?😅

  • @closingtheloop2593
    @closingtheloop2593 8 месяцев назад

    Is it bad to utilize python like this?
    class Solution:
    def reverseWords(self, s: str) -> str:
    s=s.split()
    l=[ ]
    for i in s:
    l.append(i[::-1])
    return " ".join(l)

  • @anantom251
    @anantom251 Год назад

    class Solution {
    public:
    string reverseWords(string s) {
    int n = s.size();
    int i = 0;
    int l = 0;
    int r = 0;
    while(i

  • @anonymoussloth6687
    @anonymoussloth6687 Год назад

    Couldn't u split the string using the ' ' (space), and reverse each element of that array, then join it?

    • @krateskim4169
      @krateskim4169 Год назад +2

      well yeah , but like he said at the start of the video, it wouldn't cover the essence of the problem.

  • @aditijain2448
    @aditijain2448 Год назад +1

    bro's voice changed