Skip to content

Commit

Permalink
Update 131.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
iglesias authored May 22, 2024
1 parent 28c1b2d commit 8f9782c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion leetcode/131.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ vector<vector<string>> partition(const string& s) {

TEST(PalindromePartitioning, a) {
const vector<string> ans{{"a", "a", "b"}, {"aa", "b"}};
EXPECT_EQ(partition("aab") ans);
EXPECT_EQ(partition("aab"), ans);
}

TEST(PalindromePartitioning, b) {
Expand Down

0 comments on commit 8f9782c

Please sign in to comment.