Developer


https://programmers.co.kr/learn/courses/30/lessons/42584 코딩테스트 연습 - 주식가격 초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 떨어지지 않은 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요. 제한사항 prices의 각 가격은 1 이상 10,00 programmers.co.kr 1. Problem 문제 설명 초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 떨어지지 않은 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요. 제한사항 prices의 각 가격은 1 이상 10,000 이하인 자연수입니다. prices의 길이는 2 이상 100,00..


https://leetcode.com/problems/missing-number/ Missing Number - 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 1. Problem Given an array nums containing n distinct numbers in the range [0, n], return the only number in the range that is missing from the array. Follow up: Could you ..


https://leetcode.com/problems/rotate-string/ Rotate String - 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 1. Problem We are given two strings, s and goal. A shift on s consists of taking string s and moving the leftmost character to the rightmost position. For example, if s = 'a..


https://leetcode.com/problems/shuffle-string/ Shuffle String - 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 1. Problem Given a string s and an integer array indices of the same length. The string s will be shuffled such that the character at the ith position moves to indices[i] ..


동적(움직일 動, 과녁 的) : 움직이는 성격의 정적(고요할 靜, 과녁 的) : 정지한 성격의 정적 웹페이지 서버에 미리 저장된 파일(HTML파일, 이미지, JavaScript 파일 등)이 그대로 전달되는 웹페이지 서버는 사용자가 요청에 해당하는 저장된 웹 페이지를 보낸다 사용자는 서버에 저장된 데이터가 변경되지 않는 한 고정된 웹 페이지를 본다 동적 웹페이지 서버에 있는 데이터들을 스크립트에 의해 각오처리한 후 생성되어 전달되는 웹 페이지 서버는 사용자의 요청을 해석하여 데이터를 가공한 후 생성되는 웹 페이지를 보냄 사용자는 상황, 시간, 요청 등에 따라 달라지는 웹 페이지를 본다.


C++을 이용해서 hellowWorld! 파일을 만들고 실행해보자 1. 소스 파일 추가하기 소스파일 오른쪽 마우스 클릭 -> Add -> New Item 클릭 Source.cpp라고 자동 생성되는 걸 만들어본다. 2. 코드 작성 #include int main() { std::cout Open Containing Folder 클릭 (Debug 폴더에는 .obj가 있음) helloWorld > helloWorld 의 Debug가 아니라 helloWorld의 Debug로 가야 실행파일이 있다. 4-1 . 실행파일 직접 실행해보기 cmd창 열기 해당 폴더로 가서 실행파일 실행 [실행결과] cd .. < 을 이용하면 전 단계 폴더로 갈 수 있다 hellloWorld.exe 가 있는 폴더로 가서 실행해야함! 4-..


웹소켓 세션 Channel(room)을 이용해서 개인간 통신이 아닌 channel에 등록되어 있는 멤버들끼리의 통신을 해보기로 한다. 필자는 일단 handler에서 모든걸 구현했다 다시 클래스를 나눠서 구현해보자!! 1.Java단 package ercg.common.websocket; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.apache.commons.lang3.StringUtils; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web...


1. 웹소켓 이란? → 사용자의 브라우저와 서버 사이의 인터렉티브 통신 세션을 설정할 수 있게 하는 기술 Socket over HTTP (ws://... wss:///...) http상에 있다 ws란?웹소켓프로콜 Full duplex, 2-way communication Polling, Long Pollling Auto-reconnect with intelligence 기본적으로 1:1 통신, 1: 전체 통신이 있다 room, channel을 이용하여 그룹통신 가능 [종류] WebSocket Socket Over HTTP IE10+ (Can use pure WebSocket javascript library) SockJS Like socket.io(NodeJS) Polyfill (socket.io는 원래..


기존 소스에 sqlMap.xml 파일을 추가 했는데 sqlMapException: There is no statement named cacOim090DevDAO.selectMsftInfo in this SqlMap. 라는 오류가 떴다. 처음엔 DAO랑 sql에서 받는 주소가 안맞나? 이름이 안맞나? 타입이 안맞나? 생각하고 확인해봤지만 전부 똑같아서 뭔가 했다.. 이럴땐 sql-map-config.xml 파일을 들어가서 내가 새로 추가한 sqlMap.xml 파일을 추가했는지 확인해본다.