전체 글

    npm 설치 했을 때 오류 :: npm update check failedTry running with sudo or get accessto the local update config store viasudo chown -R $USER:$(id -gn$USER) /home/ubuntu/.config

    git bash 에서 npm i ~~ 설치 시 npm update check failed Try running with sudo or get access to the local update config store via sudo chown -R $USER:$(id -gn $USER) /home/ubuntu/.config 이런 오류가 뜬다면, https://askubuntu.com/questions/925545/npm-update-check-failed npm update check failed i was actually trying to install nodejs along with npm on my ubuntu 17.04. i downloaded linux version from nodejs.org a..

    Node.js moment 모듈

    Node.js moment 모듈www.npmjs.com/package/moment momentParse, validate, manipulate, and display dateswww.npmjs.com // 모듈명 선언const moment = require("moment");// 현재시각만 나타내고 싶을 때 변수const times = moment().format("YYYY-MM-DD")// 각각 하루, 일주일, 한달 뒤console.log("today", moment().add(1,"day").format("YYYY-MM-DD"));console.log("today", moment().add(1,"week").format("YYYY-MM-DD"));console.log("today", moment()...

    노드js - nodemailer 모듈

    노드js - nodemailer 모듈 // require가 설치한 모듈을 불러옴 // 지금 설치된 nodemailer 모듈을 불러온 것 // 이제 nodemailer 기능들을 사용하게 됨 const nodemailer = require('nodemailer') const email = { host: "smtp.mailtrap.io", port: 2525, auth: { user: "b7acd369738df0", pass: "335d075b2dfae2" } }; const send = async (option) => { nodemailer.createTransportrt(email).sendMail(option, (error, info) => { if(error) { console.log(error) } ..

    백준 1065 한수 파이썬

    백준 1065 한수 파이썬 www.acmicpc.net/problem/1065 1065번: 한수 어떤 양의 정수 X의 각 자리가 등차수열을 이룬다면, 그 수를 한수라고 한다. 등차수열은 연속된 두 개의 수의 차이가 일정한 수열을 말한다. N이 주어졌을 때, 1보다 크거나 같고, N보다 작거나 www.acmicpc.net n = int(input()) han = 0 for i in range(1, n + 1): if i < 100: han += 1 else: ns = list(map(int, str(i))) print(ns) if ns[0] - ns[1] == ns[1] - ns[2]: han += 1 print(han) 1 ~ 100 까지는 비교할 숫자가 각 자릿수 밖에 없기 때문에, 모두 한수다. fo..

    프로그래머스 카카오 인형 뽑기 파이썬

    프로그래머스 카카오 인형 뽑기 def solution(board, moves): box = [] count = 0 for i in moves: for j in range(len(board)): if board[j][i - 1] != 0: box.append(board[j][i - 1]) board[j][i - 1] = 0 break stack = [] while box: if not stack: stack.append(box[0]) box.pop(0) elif stack[-1] != box[0]: stack.append(box.pop(0)) else: stack.pop(-1) box.pop(0) count += 2 return count 마지막에 모든 테스트 10개 다 통과했는데 1개가 자꾸 런타임에러 ..

    백준 10870 피보나치수5 파이썬

    백준 10870 피보나치수5 파이썬 def fibonacci(num): if num 2를 리턴한다.

    학교 & 학원 생활

    학교 & 학원 생활삶을 더 가깝게 둬야겠다.지금도 편지 하나하나 모두 간직하고 있다.마지막에 8반 친구들이랑 같이 콩트했던 영상도 남아있지 않다. 너무 아쉽다ㅠㅠ 이때 윤정쌤이 다른 것도 준비해주셨는데, 기록이 없다ㅠ

    Python 백준 1436 영화감독

    Python 백준 1436 영화감독 www.acmicpc.net/problem/1436 1436번: 영화감독 숌 666은 종말을 나타내는 숫자라고 한다. 따라서, 많은 블록버스터 영화에서는 666이 들어간 제목을 많이 사용한다. 영화감독 숌은 세상의 종말 이라는 시리즈 영화의 감독이다. 조지 루카스는 스타 www.acmicpc.net n = int(input()) name = 666 cnt = 0 while (True): if "666" in str(name): cnt += 1 if cnt == n: # cnt = 3 print(name); break name += 1 if문을 타는데, cnt를 더해줘서 666이 667이 되는 순간은 666이 아니니 if문을 안타고 name을 타서 계속 +1을 해주다가 ..