Python

    [codesignal][python] 2. CheckPalindrome(회문)

    codesignal.com Coding Tests and Assessments for Technical Hiring | CodeSignal Learn how you can go beyond resumes in technical hiring with a state-of-the-art assessment platform and advanced coding tests codesignal.com level : easy Question: Given the string, check if it is a palindrome. 회문인지를 확인하는 문제 회문 : 거꾸로 읽었을 때도 똑바로 읽었을 때와 결과가 같은 문자열 Example: For inputString = "aabaa", the output should be ..

    [codesignal][python] 1. adjacentElementsProduct

    codesignal.com Coding Tests and Assessments for Technical Hiring | CodeSignal Learn how you can go beyond resumes in technical hiring with a state-of-the-art assessment platform and advanced coding tests codesignal.com level : easy Question: Given an array of integers, find the pair of adjacent elements that has the largest product and return that product. Example: For inputArray = [3, 6, -2, -5..