문제https://www.acmicpc.net/problem/2841풀이1. Node.js(fs)const fs = require('fs');const input = fs.readFileSync('/dev/stdin').toString().trim().split('\n');// 첫 번째 줄에서 음의 수 N과 프렛의 수 P를 파싱const [N, P] = input[0].split(' ').map(Number);// 각 줄별로 프렛을 누르고 있는 상태를 저장할 배열const strings = Array.from({ length: 7 }, () => []);let fingerMoves = 0;// 각 음을 처리for (let i = 1; i 0 && strings[string][strings[string]..
노드 버전 매니저중 하나인 fnm이라는 것을 소개해보려 한다.fnm이란?fnm(Fast Node Manager)은 Rust로 작성된 빠르고 간단한 Node.js 버전 관리자입니다. 다양한 Node.js 버전을 쉽게 설치하고 전환할 수 있게 해줍니다.특징Rust로 작성되어 매우 빠른 성능크로스 플랫폼 지원 (Windows, macOS, Linux)쉬운 설치 및 사용.nvmrc 파일 지원자동 완성 기능다른 node version manager와의 차이점특징fnmnvmn언어RustBashJavaScript속도매우 빠름보통빠름크로스 플랫폼OX (Windows 미지원)O.nvmrc 지원OOX설치 난이도쉬움보통쉬움설치방법macOS (Homebrew 사용):brew install fnmLinux 및 macOS (cu..