๐ก ๊ผฌ๋ฆฌ๋ฌธ์์ด ex ๊ฐ ํฌํจ๋ ๋ฌธ์์ด์ ์ ์ธํ๊ณ ์ฐ๊ฒฐํ๋ค.
๋ฐฐ์ด ์ค์ ex ํฌํจ๋์ด์๋ ๊ฐ๋ค์ ํ์ธํ๊ณ
๊ทธ ๋ฐฐ์ด๊ฐ๋ง ๋นผ๊ณ ์ฐ๊ฒฐ์ํค๋ฉด ๋๋ค!
class Solution {
public String solution(String[] str_list, String ex) {
String answer = "";
for (int i =0; i<str_list.length; i++){
if (str_list[i].contains(ex) != true )
answer += str_list[i];
}
return answer;
}
}
[์คํจ] => ๋ฌธ์ ๋ฅผ ์๋ชป์ดํดํ๋ค ใ ใ
ex๊ฐ ํฌํจ๋์ด์์ผ๋ฉด ex ๋ฌธ์๋ค๋ง ๋นผ๋ด๊ณ ๋จ์ ๋ฌธ์๋ ๋๊ณ ์ฐ๊ฒฐ์ํค๋ ์ค ์์๋ค.
ex ๊ฐ ํฌํจ๋์ง ์์ ๋ฌธ์์ด์ ๊ทธ๋ฅ ๋ถ์ด๊ธฐ
ex ๊ฐ ๋ค์ด์๋์ง ํ์ธํ๊ณ ๊ทธ ๋ฌธ์์ด์ ๋ฌธ์ํ๋ํ๋ ๋น๊ตํ๋ฉฐ
ex ๊ฐ ์๋ ๊ฒ๋ง ๋ฃ๊ธฐ
class Solution {
public String solution(String[] str_list, String ex) {
String answer = "";
for (int i =0; i<str_list.length; i++){
if (str_list[i].contains(ex) == true ){
for (int j = 0; j < str_list[j].length(); j++){
for (int k = 0; k < ex.length(); k++){
if(ex.charAt(k) != str_list[i].charAt(j))
answer += str_list[i].charAt(j);
}
}
}else {
answer += str_list[i];
}
}
return answer;
}
}