This commit is contained in:
2022-11-15 15:38:15 +08:00
parent 210604981d
commit 381117a18a
3 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#include "s0027_remove_element.hpp"
#include <gtest/gtest.h>
TEST(Problem27, Case1) {
vector<int> nums{3, 2, 2, 3};
int val{3};
int o{2};
Solution solution;
EXPECT_EQ(solution.removeElement(nums, val), o);
}
TEST(Problem27, Case2) {
vector<int> nums{0, 1, 2, 2, 3, 0, 4, 2};
int val{2};
int o{5};
Solution solution;
EXPECT_EQ(solution.removeElement(nums, val), o);
}