분류 전체보기77 와콤 CTH-680 드라이버 아래 경로에서 드라이버를 다운받으면 인식이된다. https://drivernew.com/?p=13955 Wacom Intuos CTH-680 Driver Download – DriverNew Wacom Intuos CTH-680 Driver Download Model: Wacom Intuos CTH-680. Driver for operating system Windows 11, Windows 10, Windows 8 / 8.1, Windows 7 (64-bit / 32-bit) Download driver for Windows (version: 6.3.24-2) Driver for operating system MAC OS X 10.10, 1 drivernew.com 와콤 데스크탑센터를 설치해서 상세 조.. 2023. 5. 6. [프로그래머스 입문] (JAVASCRIPT) 종이 자르기 간단한거 왜 오래걸려서 푸는거임 function solution(M, N) { var answer = 0; answer = (M-1)*(N) + (N-1) return answer; } 2023. 4. 17. [프로그래머스 입문] (JAVASCRIPT) 연속된 수의 합 처음에 펙토리얼로 풀어야 하나 방정식은 어떻게 들어가야 하나.. 고민했는데 단순한게 최고다. + for 함수를 통한 출력을 if 문 내부에서 하려고 했는데 안됐다. function solution(num, total) { var answer = []; let firstVal = 0; if(num%2!==0){ firstVal = total/num - Math.floor(num/2); console.log("홀수"); // for(let i; i 2023. 4. 17. [프로그래머스 입문] (JAVASCRIPT) 다음에 올 숫자 등비수열 등차수열 구분해서 다음 값 리턴하기 function solution(common) { var answer = 0; if(common[0]-common[1]===common[1]-common[2]){ answer = common[common.length-1]+(common[1]-common[0]) }else{ answer = common[common.length-1]*(common[1]/common[0]) } return answer; } 마지막 요소는 common.pop() 으로도 가능하군. 2023. 4. 17. 이전 1 2 3 4 ··· 20 다음