문자열을 위대하게 만드십시오
6145 단어 javascriptleetcode
/**
* @param {string} s
* @return {string}
*/
var makeGood = function (s) {
let stack = [];
for (let i = 0; i < s.length; i++) {
let nextChar = s[i];
if (stack.length === 0) {
stack.push(s[i]);
} else if (
stack[stack.length - 1]?.toLowerCase() === s[i].toLocaleLowerCase()
) {
if (
(nextChar === nextChar?.toUpperCase() &&
stack[stack.length - 1] !== stack[stack.length - 1]?.toUpperCase()) ||
(stack[stack.length - 1] == stack[stack.length - 1]?.toUpperCase() &&
nextChar !== nextChar?.toUpperCase())
) {
stack.pop();
} else {
stack.push(nextChar);
}
} else {
stack.push(nextChar);
}
}
return stack.length > 0 ? stack.join("") : "";
};
console.log(makeGood("lEeeetcode"));
console.log(makeGood("kkdsFuqUfSDKK"));
console.log(makeGood("abBAcC"));
console.log(makeGood("Pp"));
Reference
이 문제에 관하여(문자열을 위대하게 만드십시오), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/zeeshanali0704/make-the-string-great-2ao3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)