백준 단계별로 풀기 6단계 1차원 배열 사용하기 - 단어의 개수 (1152 문제) Python 2 답안 백준 단계별로 풀기 6단계 raw_string = raw_input()raw_str_list = raw_string.split(" ")if raw_str_list[len(raw_str_list)-1] == "": raw_str_list.pop(len(raw_str_list)-1)if raw_str_list[0] == "": raw_str_list.pop(0)print len(raw_str_list) Algorithm/Baekjoon 2019.01.17
(NPM) 특정 버전의 모듈 설치하기 ○ 사용법npm install 모듈명@버전 ex) npm install npm@4.6.1 Programming/JavaScript & TypeScript 2019.01.17
(Angular) Error - You can check this with `npm ls @ngtools/webpack`, and then remove the extra copies. 해결법 ○ ng build 또는 ng serve시 에러 ERROR in ./src/polyfills.ts Module build failed: Error: Angular Compiler was detected but it was an instance of the wrong class. This likely means you have several @ngtools/webpack packages installed. You can check this with `npm ls @ngtools/webpack`, and then remove the extra copies. ○ npm ls @ngtools/webpack 입력 +-- @angular/cli@1.6.3 | `-- @ngtools/webpack@1.9.3 `-- .. Programming/JavaScript & TypeScript 2019.01.17
(Shell Script) Sleep 주기 sleep 시간 ※ 예제 - sleep .3 #0.3초 기다리기 - sleep 3 #3초 기다리기 - sleep 3s #3초 기다리기 - sleep 3m #3분 기다리기 - sleep 3h #3시간 기다리기 - sleep 3d #3일 기다리기 Programming/Shell 2019.01.17
백준 단계별로 풀기 4단계 if문 사용해보기 - 평균은 넘겠지 (4344 문제) Python 2 답안 백준 단계별로 풀기 4단계 test_case = int(input())i = 0result_list = list() while i (total_score/student_cnt): avg_cnt += 1 result_list.append("%.3f" % float((float(.. Algorithm/Baekjoon 2019.01.16
백준 단계별로 풀기 4단계 if문 사용해보기 - X보다 작은 수(10871 문제) Python 2 답안 a_b = raw_input()a, b = a_b.split(" ") A_str = raw_input()A_list = A_str.split(" ") result = ""for A in A_list: if int(b) > int(A): result = result + A + " "print result Algorithm/Baekjoon 2019.01.14
백준 단계별로 풀기 4단계 if문 사용해보기 - 세수(10817 문제) C언어 답안 #include int main(void) { int a = 0; int b = 0; int c = 0; scanf("%d", &a); scanf("%d", &b); scanf("%d", &c); if ((a c) { printf("%d", b); } else { printf("%d", c); } } else { printf("%d", a); } return 0;} Algorithm/Baekjoon 2019.01.14
백준 단계별로 풀기 4단계 if문 사용해보기 - 시험성적(9498번 문제) C언어 답안 #include int main(void) { int answer = 0; scanf("%d", &answer); if ((answer >= 90) && (answer Algorithm/Baekjoon 2019.01.14
(Angular5) 시작하기 * Angular는 Node 환경이기 때문에 Node가 필수적으로 설치되어 있어야 합니다.Angular requires Node.js version 8.x or 10.x. 1. Angular client 설치 npm install -g @angular/cli 2. Workspace와 초기 Application 생성하기 ng new [만들고 싶은 프로젝트 이름] ● 명령어- ng serve : Angular 내 자체 개발 서버를 띄우는 명령어- ng eject : Webpack config 추출 명령어 -> webpack.config.js 생성- ng build : Server에 삽입할 수 있도록 Angular source를 build -> bundle 소스 생성- ng generate [component.. Programming/JavaScript & TypeScript 2018.12.03