We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f172ea commit 380ead2Copy full SHA for 380ead2
src/StringArray.h
@@ -171,23 +171,4 @@ class LinkedList {
171
}
172
};
173
174
-
175
-class StringArray : public LinkedList<String> {
176
-public:
177
178
- StringArray() : LinkedList(nullptr) {}
179
180
- bool containsIgnoreCase(const String& str){
181
- for (const auto& s : *this) {
182
- if (str.equalsIgnoreCase(s)) {
183
- return true;
184
- }
185
186
- return false;
187
188
-};
189
190
191
192
193
#endif /* STRINGARRAY_H_ */
0 commit comments