본문 바로가기

Node.js20

[ 회고 ] 2022년을 돌아보며 들어가며 안녕하세요 개발자 이창훈 입니다. 오랜만에 찾아뵙게 되었습니다 :) 이번년도 첫글은 지난 2022년도를 회상하며 회고하는 글을 작성해보고자 합니다. 아! 2023년도를 다짐하는 글도 포함되어 있습니다. Good Bye 2022! 인턴 교육 & 면접 진행 회사와 연계된 교육기관으로부터 4분정도를 인계 받아 한달이라는 짧은 기간동안 교육을 진행하였습니다. 인턴분들의 열정 넘치는 모습에 자극을 받아 저도 더 열심히 그리고 하나라도 더 알려드리려고 노력했습니다. 인턴분들이 과제로 주어진 프로젝트를 하시면서 다양한 질문을 주셨는데, 답변하는 과정에서 몇몇 질문은 얼버무렸던 기억이 있습니다.. 후일담으로 얼버무렸던 질문들은 얼른 찾아보고 정리하여 답변드렸었습니다 ㅋㅋㅋㅋ 인턴분들의 면접을 진행하게 되면서 .. 2023. 1. 4.
[CodeWars] javascript - 6kyu : Returning Strings 기본적인 문제는 문제풀이 없이 Solution만 작성되어 있습니다. Title Returning Strings Description Make a function that will return a greeting statement that uses an input; your program should return, "Hello, how are you doing today?". [ Example Output ] 'Naver'// => "Hello, Naver how are you doing today?". 'Google'// => "Hello, Google how are you doing today?". 'Daum'// => "Hello, Daum how are you doing today?". Test C.. 2020. 8. 10.
[CodeWars] javascript - 6kyu : Will the present fit? 기본적인 문제는 문제풀이 없이 Solution만 작성되어 있습니다. Title Will the present fit? Description Santa's elves are boxing presents, and they need your help! Write a function that takes two sequences of dimensions of the present and the box, respectively, and returns a Boolean based on whether or not the present will fit in the box provided. The box's walls are one unit thick, so be sure to take that in to account... 2020. 7. 28.
[백준] javascript - 2742번 : 기찍 N 기본적인 문제는 문제풀이 없이 Solution만 작성되어 있습니다. Title 기찍 N Description 자연수 N이 주어졌을 때, N부터 1까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. [ Example Input ] 첫째 줄에 100,000보다 작거나 같은 자연수 N이 주어진다. 5 [ Example Output ] 첫째 줄부터 N번째 줄 까지 차례대로 출력한다. 5 4 3 2 1 Solution const fs = require('fs'); const input = fs.readFileSync('/dev/stdin').toString().split(' ') const RANGE_VALUE = Number(input) for(let i=RANGE_VALUE; i>=1; i--){ conso.. 2020. 7. 27.