[MY SQL] Symmetric Pairs / 조건분기+union
>> 문제 => (x,y)의 좌표들이 행으로 주어짐 => (x.y) 를 뒤집은 (y.x)가 행에 존재하면 그 행을 출력하라는 문제 >>입력 예시 >> (20, 20) 은 (20, 20)과 대응 >> (20, 21) 은 (21, 20)과 대응 >> (22, 23) 은 (23, 22)와 대응 => 여기서 20, 20이 서로 같아도 행이 두 개여야 인정됨 => 즉, x,y가 같은 x,x가 한 행만 존재한다면 출력하면 안된다. >> 내가 푼 풀이 먼저 경우를 2가지로 구분하였다. case1 ) x==y 일 때 => 만약 같은 행이 하나 더 존재하면 출력해야 함 ex) (20,20) 이 하나만 있다면 -> 대응되는 행이 없으므로 출력x (20,20) 이 하나 이상 있다면 -> 대응되는 행이 있으므로 출력o cas..
[MYSQL] New Companies / 계층구조의 외래키 설정
> 문제 회사의 계층구조 Given the table schemas below, write a query to print the company_code, founder name, total number of lead managers, / total number of senior managers, total number of managers, and total number of employees Order your output by ascending company_code ------------------------------ 출력형식 : 회사코드 , founder 이름 , lead manager 수, senior manager 수, manager 수, employees 수 Note: - The table..
[나도코딩] 데이터 분석 및 시각화 - matplotlib 요약
https://youtu.be/PjhlUzp_cU0 > matplotlib 가져오기 import matplotlib.pyplot as plt >plot x=[1,2,3] y=[2,4,8] plt.plot(x,y) #라인 출력 안하려면 plt.show() >title 설정 : plt.title('그래프 제목') > 축 설정(xlabel / ylabel) plt.xlabel('X축', color='red', loc='right')#left, center, right plt.ylabel('Y축', color='#00aa00', loc= 'top') # top, center, bottom >축 표시값 설정 (xticks / yticks) plt.xticks([1,2,3]) #x축의 범위를 1, 2, 3순으로 표..
[나도코딩] 데이터 분석 및 시각화 - Pandas 요약
https://youtu.be/PjhlUzp_cU0 >> pandas 불러오기 import pandas as pd 1. series : 1차원 데이터(정수, 실수, 문자열 등) > series 만들기 temp=pd.Series([-20,-10,10,20]) > series index 지정 temp=pd.Series([-20,-10,10,20], index=['Jan','Feb','Mar','Apr']) # 색인 temp['Jan'] #index Jan{1월}에 해당하는 데이터 출력 2. DataFrme : 2차원 데이터(정수, 실수, 문자열 등) #2차원 데이터 초기화 data={ '이름' : ['채치수','정대만',"송태섭","서태웅","강백호","변덕규","황태산","윤대협"] ,'학교' : ["북산..