코딩테스트151 [프로그래머스/python] 1. 편지(코딩테스트 입문 - Lv.0) 문제 설명 머쓱이는 할머니께 생신 축하 편지를 쓰려고 합니다. 할머니가 보시기 편하도록 글자 한 자 한 자를 가로 2cm 크기로 적으려고 하며, 편지를 가로로만 적을 때, 축하 문구 message를 적기 위해 필요한 편지지의 최소 가로길이를 return 하도록 solution 함수를 완성해주세요. 제한사항 공백도 하나의 문자로 취급합니다. 1 ≤ message의 길이 ≤ 50 편지지의 여백은 생각하지 않습니다. message는 영문 알파벳 대소문자, ‘!’, ‘~’ 또는 공백으로만 이루어져 있습니다. 풀이 def solution(message): answer = len(message) * 2 return answer 코딩테스트/프로그래머스 python 2023. 8. 16. [해커랭크/MySQL] 45. Symmetric Pairs 👉https://www.hackerrank.com/challenges/symmetric-pairs/problem?isFullScreen=true Symmetric Pairs | HackerRank Write a query to output all symmetric pairs in ascending order by the value of X. www.hackerrank.com 🤔 문제 분석 1. Two pairs (X1, Y1) and (X2, Y2) are said to be symmetric pairs if X1 = Y2 and X2 = Y1. 2. Write a query to output all such symmetric pairs in ascending order by the value of X... 코딩테스트/해커랭크 SQL 2023. 4. 14. [해커랭크/MySQL] 44. Placements 👉https://www.hackerrank.com/challenges/placements/problem?isFullScreen=true Placements | HackerRank Write a query to output the names of those students whose best friends got offered a higher salary than them. www.hackerrank.com 🤔 문제 분석 1. There are 3 query. 2. Write a query to output the names of those students whose best friends got offered a higher salary than them. 3. Names must be ordered b.. 코딩테스트/해커랭크 SQL 2023. 4. 13. [프로그래머스/SQL] 72. 조회수가 가장 많은 중고거래 게시판의 첨부파일 조회하기(String, Date - LV. 3) 👉https://school.programmers.co.kr/learn/courses/30/lessons/164671 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 🤔 문제 분석 1. USED_GOODS_BOARD와 USED_GOODS_FILE 테이블에서 조회수가 가장 높은 중고거래 게시물에 대한 첨부파일 경로를 조회하는 SQL문을 작성해주세요. 2. 첨부파일 경로는 FILE ID를 기준으로 내림차순 정렬해주세요. 3. 기본적인 파일경로는 /home/grep/src/ 이며, 게시글 ID를 기준으로 디렉토리가 구분되고, 파일이름은 파일 ID, 파일 이름, .. 코딩테스트/프로그래머스 SQL 2023. 4. 12. [프로그래머스/SQL] 71. 조건에 부합하는 중고거래 상태 조회하기(String, Date - LV. 2) 👉https://school.programmers.co.kr/learn/courses/30/lessons/164672 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 🤔 문제 분석 1. USED_GOODS_BOARD 테이블에서 2022년 10월 5일에 등록된 중고거래 게시물의 2. 게시글 ID, 작성자 ID, 게시글 제목, 가격, 거래상태를 조회하는 SQL문을 작성해주세요. 3. 거래상태가 SALE 이면 판매중, RESERVED이면 예약중, DONE이면 거래완료 분류하여 출력해주시고, 4. 결과는 게시글 ID를 기준으로 내림차순 정렬해주세요. 💡 풀이 SE.. 코딩테스트/프로그래머스 SQL 2023. 4. 12. [해커랭크/MySQL] 43. Weather Observation Station 17 👉Weather Observation Station 17 | HackerRank Weather Observation Station 17 | HackerRank Query the Western Longitude for the smallest value of the Northern Latitudes greater than 38.7780 in STATION and round to 4 decimal places. www.hackerrank.com 🤔 문제 분석 1. Query the Western Longitude (LONG_W)where the smallest Northern Latitude (LAT_N) in STATION is greater than 38.7780. 2. Round your answer t.. 코딩테스트/해커랭크 SQL 2023. 4. 10. [해커랭크/MySQL] 42. Weather Observation Station 16 👉 https://www.hackerrank.com/challenges/weather-observation-station-16/problem?isFullScreen=true 🤔 문제 분석 1. Query the smallest Northern Latitude (LAT_N) from STATION that is greater than . 2. Round your answer to 4 decimal places. 💡 풀이 SELECT ROUND(MIN(LAT_N), 4) FROM STATION WHERE LAT_N > 38.7780 코딩테스트/해커랭크 SQL 2023. 4. 10. [해커랭크/MySQL] 41. Weather Observation Station 15 👉 https://www.hackerrank.com/challenges/weather-observation-station-15/problem?isFullScreen=true Weather Observation Station 15 | HackerRank Query the Western Longitude for the largest Northern Latitude under 137.2345, rounded to 4 decimal places. www.hackerrank.com 🤔 문제 분석 1. Query the Western Longitude (LONG_W) for the largest Northern Latitude (LAT_N) in STATION that is less than 137.2345. 2... 코딩테스트/해커랭크 SQL 2023. 3. 21. [해커랭크/MSSQL] 40. Ollivander's Inventory 👉 https://www.hackerrank.com/challenges/harry-potter-and-wands/problem?isFullScreen=true Ollivander's Inventory | HackerRank Help pick out Ron's new wand. www.hackerrank.com 🤔 문제 분석 1. Hermione decides the best way to choose is by determining the minimum number of gold galleons needed to buy each non-evil wand of high power and age. 2. Write a query to print the id, age, coins_needed, and power .. 코딩테스트/해커랭크 SQL 2023. 3. 21. [프로그래머스/SQL] 70. 조건에 맞는 사용자 정보 조회하기(String, Date - LV. 3) 👉https://school.programmers.co.kr/learn/courses/30/lessons/164670 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 🤔 문제 분석 1) USED_GOODS_BOARD와 USED_GOODS_USER 테이블에서 중고 거래 게시물을 3건 이상 등록한 사용자의 2) 사용자 ID, 닉네임, 전체주소, 전화번호를 조회하는 SQL문을 작성해주세요. 3) 이때, 전체 주소는 시, 도로명 주소, 상세 주소가 함께 출력되도록 해주시고, 4) 전화번호의 경우 xxx-xxxx-xxxx 같은 형태로 하이픈 문자열(-)을 삽입하여 .. 코딩테스트/프로그래머스 SQL 2023. 3. 20. [프로그래머스/SQL] 69. 조건에 부합하는 중고거래 댓글 조회하기(Select - LV. 1) 👉https://school.programmers.co.kr/learn/courses/30/lessons/164673 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 🤔 문제 분석 1) USED_GOODS_BOARD와 USED_GOODS_REPLY 테이블에서 2022년 10월에 작성된 게시글 제목, 게시글 ID, 댓글 ID, 댓글 작성자 ID, 댓글 내용, 댓글 작성일을 조회하는 SQL문을 작성해주세요. 2) 결과는 댓글 작성일을 기준으로 오름차순 정렬해주시고, 댓글 작성일이 같다면 게시글 제목을 기준으로 오름차순 정렬해주세요. 💡 풀이 SELECT B.T.. 코딩테스트/프로그래머스 SQL 2023. 3. 20. [해커랭크/SQL] 39. Top Competitors 👉 https://www.hackerrank.com/challenges/full-score/problem?isFullScreen=true Top Competitors | HackerRank Query a list of top-scoring hackers. www.hackerrank.com 🤔 문제 분석 1. Write a query to print the respective hacker_id and name of hackers who achieved full scores for more than one challenge. 2. Order your output in descending order by the total number of challenges in which the hacker earned a.. 코딩테스트/해커랭크 SQL 2023. 3. 17. 이전 1 2 3 4 ··· 13 다음