목록CS Library (31)
Silver Library (Archived)
문제 9개의 서로 다른 자연수가 주어질 때, 이들 중 최댓값을 찾고 그 최댓값이 몇 번째 수인지를 구하는 프로그램을 작성하시오. 예를 들어, 서로 다른 9개의 자연수 3, 29, 38, 12, 57, 74, 40, 85, 61 이 주어지면, 이들 중 최댓값은 85이고, 이 값은 8번째 수이다. 입력 첫째 줄부터 아홉 번째 줄까지 한 줄에 하나의 자연수가 주어진다. 주어지는 자연수는 100 보다 작다. 출력 첫째 줄에 최댓값을 출력하고, 둘째 줄에 최댓값이 몇 번째 수인지를 출력한다. 예제 입력 1 3 29 38 12 57 74 40 85 61 예제 출력 1 85 8 해답 const fs = require('fs'); const filePath = process.platform === 'linux' ? '..
좀 더 작정하고 알아보는 readline module. 그 1편. 확실한 사실: 이건 node.js 의 Readline 과 연관이 있습니다. The readline module provides an interface for reading data from a Readable stream (such as process.stdin) one line at a time. It can be accessed using: const readline = require('readline'); The following simple example illustrates the basic use of the readline module. const readline = require('readline'); const rl = r..
1. https://developer.mozilla.org/ko/docs/orphaned/Web/JavaScript/Reference/Global_Objects/Array/Reduce 2. https://ko.wikipedia.org/wiki/%EC%9E%AC%EA%B7%80 3. https://im-developer.tistory.com/135 4. https://velog.io/@minidoo/%EC%9E%90%EB%B0%94%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EC%BD%9C%EB%B0%B1-%ED%95%A8%EC%88%98Callback-Function 5. https://stackoverflow.com/questions/1047454/what-is-lexical-s..
Array 를 보다 보니 다시 접하게 된 개념: enumerable, configurable. Enumerability and ownership of properties | MDN 'Enumerable properties'(열거 가능한 속성)는 내부 열거 형 플래그가 true로 설정된 property로, 이는 간단한 할당 또는 property initializer (Object.defineProperty를 통해 정의 된 특성 및 이러한 기본 열거 형을 fals developer.mozilla.org https://kamang-it.tistory.com/entry/JavaScript12js%EC%97%90%EC%84%9C%EB%8A%94-%EC%86%8D%EC%84%B1%EC%9D%84-%EB%8D%94-..