코딩테스트(알고리즘)/leetCode7 [leetCode] 1. Two Sum (Javascript) (5) Two Sum - LeetCode Two Sum - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 접근 : 투포인터 Javascript let input = require("fs") .readFileSync("input.txt") //"/dev/stdin" .toString() .split("\n") .map((val) => val.trim()); function solution(input) { //input let nums = input[0].split.. 2022. 6. 25. [leetCode] 13.Roman to Integer (Javascript) (5) Roman to Integer - LeetCode Roman to Integer - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 접근 : 문자열,구현 Javascript let input = require("fs") .readFileSync("input.txt") //"/dev/stdin" .toString() .split("\n") .map((val) => val.trim()); function solution(input) { //input let s.. 2022. 6. 24. [leetCode] 6.Zigzag Conversion (Javascript) (5) Zigzag Conversion - LeetCode Zigzag Conversion - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 접근 : 문자열 구현 Javascript let input = require("fs") .readFileSync("input.txt") //"/dev/stdin" .toString() .split("\n") .map((val) => val.trim()); function solution(input) { //input let.. 2022. 6. 24. 이전 1 2 다음