Algorithm

    [codesignal][python] 10. Sort by Height

    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: Some people are standing in a row in a park. There are trees between them which cannot be moved. Your task is to rearrange the people by their heights in a ..

    [codesignal][python] 9. isLucky

    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: Ticket numbers usually consist of an even number of digits. A ticket number is considered lucky if the sum of the first half of the digits is equal to the s..

    [codesignal][python] 8. commonCharacterCount

    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 two strings, find the number of common characters between them. 두 string이 주어지면 서로 같은 겹치는 요소의 개수를 반환하는 문제 Example: For s1 = "aabcc" and s2 = "adcaa", t..

    [codesignal][python] 7. AllLongestStrings

    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 strings, return another array containing all of its longest strings. Example: For inputArray = ["aba", "aa", "ad", "vcd", "aba"], the outp..

    [REF] 코딩 테스트 공부 계획

    다양한 플렛폼의 기본 문제들 풀어보기 하루 5문제씩 꾸준하게! 코드시그널*** 코드업*** 해커랭크 코딜리티 리트코드*** (easy, medium) 프로그래머스 코드포스 백준 codeforces.com/ Codeforces codeforces.com codeup.kr/problemsetsol.php?psid=23 문제집 / 기초 100제 codeup.kr codeup.kr/ CodeUp ☆ 파이썬 다운로드 : 파이썬3 ☆ 무료 C언어 IDE : Code::blocks DEV C++ ☆ 추천 온라인 IDE : C++11 Python3 Java ☆ 채점 가능 언어 : C, C++, JAVA, Python 3.5 ★ C++로 제출시 void main()을 사용하면 컴 codeup.kr programmers...

    [codesignal][python] 5. almostIncreasingSequence

    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 a sequence of integers as an array, determine whether it is possible to obtain a strictly increasing sequence by removing no more than one element fro..

    [codesignal][python] 4. Make Array Consecutive 2BACK

    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: Ratiorg got statues of different sizes as a present from CodeMaster for his birthday, each statue having an non-negative integer size. Since he likes to mak..

    [codesignal][python] 3. shapeArea

    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: Below we will define an n-interesting polygon. Your task is to find the area of a polygon for a given n. A 1-interesting polygon is just a square with a sid..

    [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..