Post

leetcode(리트코드)344-Reverse String

leetcode(리트코드)344-Reverse String

leetcode 344 - Reverse String 문제입니다.

1. 문제

https://leetcode.com/problems/reverse-string/


2. Input , Output


3. 분류 및 난이도

Eazy 난이도 문제입니다.
Top 100 Interview 문제입니다.


4. 문제 해석

  • 문자 벡터가 있습니다. 뒤집으면 됩니다.

5. code

c++

1
2
3
4
5
6
class Solution {
public:
    void reverseString(vector<char>& s) {
        reverse(s.begin(),s.end());
    }
};

6. 결과 및 후기, 개선점

코드에 대한 설명이 필요하신 분은 댓글을 달아주세요.!!

c++ 72% python ??%

This post is licensed under CC BY 4.0 by the author.