본문 바로가기

코딩 테스트21

[생각정리] Testdome 을 사용한 온라인 테스트 후기 🏃🏻 들어가며이번에 취업 준비를 하면서 다양한 유형의 온라인 테스트를 진행했다. 그중에서 대다수는 프로그래머스를 사용했고, 일부는 프로젝트 구현을 했었다.서류 합격 메일을 받고 진행하게 된 온라인 테스트에서 TestDome 플랫폼을 쓴 회사는 여기가 처음이었다.   뭔가 UI 와 전체적인 맥락은 프로그래머스와 유사해보였다. 바로 테스트를 시작하며 한가지 간과했던것은 출제 되는 문제의 유형과 TestDome 만의 문제별 시간 할당 방식이었다. 여기서 부터 꼬이기 시작했고, 결과적으로는 떨어졌다.   ✅  좋은점1) 실무에서 볼법한 문제 유형실제 업무에 사용하는 스택과 기업에서 중점적으로 보는 문제 해결 역량이 어떤것인지 확인 할 수 있었다.특히, node.js 구현 문제와 SQL 문제의 경우 실무에서.. 2024. 11. 27.
[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.
반응형