분류 전체보기 썸네일형 리스트형 [HackerRank/MySQL] Population Density Difference 가장 높은 인구수와 가장 낮은 인구수의 차 구하기 링크: https://www.hackerrank.com/challenges/population-density-difference/problem Population Density Difference | HackerRank Query the difference between the maximum and minimum city populations in CITY. www.hackerrank.com SELECT MAX(population) - MIN(population) FROM city SELECT: 키워드와 함께 검색하고 싶은 속성의 이름을 나열 FROM: 키워드와 함께 검색하고 싶은.. 더보기 [HackerRank/MySQL] Japan Population 일본의 모든 도시의 인구수 합 구하기 링크: https://www.hackerrank.com/challenges/japan-population/problem Japan Population | HackerRank Query to the sum of the populations of all Japanese cities in CITY. www.hackerrank.com SELECT SUM(population) FROM city WHERE countrycode = 'JPN' SELECT: 키워드와 함께 검색하고 싶은 속성의 이름을 나열 FROM: 키워드와 함께 검색하고 싶은 속성이 있는 데이블의 이름을 나열 WHERE: 키워드와 함께 비.. 더보기 [HackerRank/MySQL] Average Population 모든 도시의 평균 인구수 구하기 링크: https://www.hackerrank.com/challenges/average-population/problem Average Population | HackerRank Query the average population of all cities, rounded down to the nearest integer. www.hackerrank.com SELECT ROUND(AVG(population)) FROM city SELECT ROUND(AVG(population), 0) FROM city SELECT: 키워드와 함께 검색하고 싶은 속성의 이름을 나열 FROM: 키워드와 함께 검색하고 .. 더보기 [HackerRank/MySQL] Revising Aggregations - Averages California 지역의 평균 인구수 구하기 링크: https://www.hackerrank.com/challenges/revising-aggregations-the-average-function/problem Revising Aggregations - Averages | HackerRank Query the average population of all cities in the District of California. www.hackerrank.com SELECT AVG(population) FROM city WHERE district = 'California' SELECT: 키워드와 함께 검색하고 싶은 속성의 이름을 나열 .. 더보기 [HackerRank/MySQL] Revising Aggregations - The Sum Function California 지역의 총 인구수 구하기 링크: https://www.hackerrank.com/challenges/revising-aggregations-sum/problem Revising Aggregations - The Sum Function | HackerRank Query the total population of all cities for in the District of California. www.hackerrank.com SELECT SUM(population) FROM city WHERE district = 'California' SELECT: 키워드와 함께 검색하고 싶은 속성의 이름을 나열 FROM: 키워.. 더보기 [코드업/Python] 6030 : [기초-값변환] 영문자 1개 입력받아 10진수로 변환하기 링크: https://codeup.kr/problem.php?id=6030 [기초-값변환] 영문자 1개 입력받아 10진수로 변환하기(설명)(py) 본 문제는 python 의 빠른 기초 학습을 위해 설계된 문제로서 python 코드 제출을 기준으로 설명되어 있습니다. ------ 영문자 1개를 입력받아 10진수 유니코드(Unicode) 값으로 출력해보자. 예시 n = ord( codeup.kr a = ord(input()) print(a) print( ) 함수 단순 값, 변수의 값, 연산 결과 등을 확인하기 위해 사용되는 함수 %o로 출력하면 8진수(octal) 형태 문자열로 출력 input( ) 을 사용하면 키보드로 입력한 값을 .. 더보기 [코드업/Python] 6029 : [기초-값변환] 16진 정수 입력받아 8진수로 출력하기 링크: https://codeup.kr/problem.php?id=6029 [기초-값변환] 16진 정수 입력받아 8진수로 출력하기(설명)(py) python언어기초100제v1.0 : @컴퓨터과학사랑, 전국 정보(컴퓨터)교사 커뮤니티/연구회 - 학교 정보(컴퓨터)선생님들과 함께 수업/방과후학습/동아리활동 등을 통해 재미있게 배워보세요. - 모든 내용 codeup.kr a = int(input(), 16) print('%o' %a) print( ) 함수 단순 값, 변수의 값, 연산 결과 등을 확인하기 위해 사용되는 함수 %o로 출력하면 8진수(octal) 형태 문자열로 출력 input( ) 을 사용하면 키보드로 입력한 값을 가져온다... 더보기 [HackerRank/MySQL] Revising Aggregations - The Count Function 인구수가 100,000명 이상인 도시의 개수 구하기 링크: https://www.hackerrank.com/challenges/revising-aggregations-the-count-function/problem Revising Aggregations - The Count Function | HackerRank Query the number of cities having populations larger than 100000. www.hackerrank.com SELECT COUNT(*) FROM city WHERE population > 100000 SELECT: 키워드와 함께 검색하고 싶은 속성의 이름을 나열 FROM: 키워.. 더보기 이전 1 ··· 10 11 12 13 14 15 16 ··· 22 다음