problemscpp
A collection of my answers to algorithm problems in c++.
| 函数
lintcode::character_deletion 命名空间参考

lintcode 1905. 字符删除 更多...

class  Solution
 

函数

 TEST (character_deletion, case1)
 

详细描述

lintcode 1905. 字符删除

函数说明

◆ TEST()

lintcode::character_deletion::TEST ( character_deletion  ,
case1   
)

在文件 lintcode_test.cpp54 行定义.

54 {
55 auto str = string("They are students");
56 auto sub = string("aeiou");
57 ASSERT_EQ("Thy r stdnts", Solution::CharacterDeletion(str, sub));
58 }

引用了 lintcode::character_deletion::Solution::CharacterDeletion().