Skip to content

Commit

Permalink
가장 긴팰린드롬 :실패
Browse files Browse the repository at this point in the history
  • Loading branch information
alli-eunbi committed May 2, 2022
1 parent 72e94a0 commit d4829d0
Showing 1 changed file with 31 additions and 4 deletions.
35 changes: 31 additions & 4 deletions item_scout_interview/palyns.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
//* <링크>
// https://programmers.co.kr/learn/courses/30/lessons/12904

//? [문제]
//앞뒤를 뒤집어도 똑같은 문자열을 팰린드롬(palindrome)이라고 합니다.
// 문자열 s가 주어질 때, s의 부분문자열(Substring)중 가장 긴 팰린드롬의 길이를 return 하는 solution 함수를 완성해 주세요.

// 예를들면, 문자열 s가 "abcdcba"이면 7을 return하고 "abacde"이면 3을 return합니다.

// 제한사항
// 문자열 s의 길이 : 2,500 이하의 자연수
// 문자열 s는 알파벳 소문자로만 구성

//? [입출력]
// s answer
// "abcdcba" 7
// "abacde" 3

//* 내 답안
function solution(s) {
const num = s.length();
}

console.log(solution("abacde"));
//* 다른 사람 답안

//★ 배운점

//* 시도들

// function solution(s) {
// //여기에 코드를 작성한다고 생각해주시면 됩니다.
// const word = s.split("");
Expand All @@ -16,7 +46,7 @@
// return String(answer);
// }

function solution(s) {
function solution2(s) {
//여기에 코드를 작성한다고 생각해주시면 됩니다.
const word = s.split("");
let answer = [];
Expand All @@ -34,6 +64,3 @@ function solution(s) {

// console.log(solution("abcdcba"));
// 출력 결과 : abcdcba

console.log(solution("abacde"));
// 출력 결과 : aba

0 comments on commit d4829d0

Please sign in to comment.