Reverse Left Words
This commit is contained in:
19
tests/offer_58.cpp
Normal file
19
tests/offer_58.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "offer_58.hpp"
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
TEST(Offer58, Case1) {
|
||||
string s{"abcdefg"};
|
||||
int k{2};
|
||||
string expected{"cdefgab"};
|
||||
Solution solution;
|
||||
EXPECT_EQ(solution.reverseLeftWords(s, k), expected);
|
||||
}
|
||||
|
||||
TEST(Offer58, Case2) {
|
||||
string s{"lrloseumgh"};
|
||||
int k{6};
|
||||
string expected{"umghlrlose"};
|
||||
Solution solution;
|
||||
EXPECT_EQ(solution.reverseLeftWords(s, k), expected);
|
||||
}
|
Reference in New Issue
Block a user