Blog
-
데이터 사이언티스트로서 직업을 얻는 법 : 자격과 기술IT_News/Article 2020. 4. 13. 17:34
How to get a job as a data scientist: Qualifications & skills 데이터 사이언티스트로서 직업을 얻는 법 : 자격과 기술 by Aoife Geary With the rise of big data comes the need for more highly skilled people to mine and interpret that data for businesses. This is the role of a data scientist, the job that Harvard Business Review called "the sexiest job of the 21st century" back in 2012. 빅데이터의 시대가 옴으로써 더욱 사업에 필요한 데이터들을 얻어내고..
-
2939_Python // 설탕 배달IT_Baekjoon 단계별로 풀어보기/수학 1,2 2020. 1. 29. 19:09
Python i = int(input()) j = i c = 0 while(True) : if(j%3 == 0 and int(j/3)=5) : c += 1 j -= 5 else : c = -1 break if(c == -1) : print(c) else : if(i%5 == 0) : print(int(i/5)) elif(c > int(i/3)) : print(int(i/3)) else : print(c) while문의 첫 if문 조건중 int(j/3) < 5 가 있는 이유는 3과 5의 공배수인 15의 경우 5로 나누는게 효율적이기 때문에 3의 몫이 5를 넘는 경우를 조건에 넣은 것 입니다. === 어려웠네요
-
2941_Python // 크로아티아 알파벳IT_Baekjoon 단계별로 풀어보기/문자열 2020. 1. 15. 13:28
Python s = str(input()) c = 0 c += s.count('c=') s = s.replace('c=',' ') c += s.count('c-') s = s.replace('c-',' ') c += s.count('dz=') s = s.replace('dz=',' ') c += s.count('d-') s = s.replace('d-',' ') c += s.count('lj') s = s.replace('lj',' ') c += s.count('nj') s = s.replace('nj',' ') c += s.count('s=') s = s.replace('s=',' ') c += s.count('z=') s = s.replace('z=',' ') s = s.replace(' ','') ..