본문 바로가기

전체 글

(9)
큐넷 시험장소 현황확인&변경 정보처리기사 실기신청하는 날, 완전히 까먹고 저녁에 알아차렸을 때 아찔함이란.. 일단 급하게 두시간 거리라도 신청했지만 넘 에바참치라 다음날인 오늘 틈틈히 계속 확인하다가 집 근처 학교에 자리 생겨서 바로 취소하고 신청!!!! 성공했습다 얏 호 ^^ 그래서~ 혹시나 까먹을까봐 내가 보려고 만든 시험장소 현황 확인하는 법 !!! 일단 피씨로 큐넷 홈페이지에 들어간다. ** 기술자격시험 > 원서접수 > 원서접수현황 > 응시시험(정기 기사 4회)선택 > 자격(정보처리기사)선택 시험장소 현황 확인 지역선택 > 조회 !!! 하면 마감 안 된 순서로 쭈루룩 나온다. 어딘지 확인하고 집이랑 젤 가까운 학교로 선택! 신청!! 끝~~~
정리노트 (SQL) 이것저것 모음들 .. * COUNT(*) OVER(PARTITION BY 컬럼명 : 그룹단위로 나누어 카운트한 결과 출력 * SELECT AS - : 테이블 또는 테이블의 열에 대해 임시로 이름 변경 * GROUP BY ; 그룹으로 나누어 데이터 출력 ( where 절 과 order by 사이에 위치 ) * HAVING : 그룹바이 한 결과를 대상으로 필터링 ( GROUP BY 절 다음에 위치 ) —> SELECT * FROM TABLE WHERE - GROUP BY - HAVING - ORDER BY - * SELECT - OFFSET 숫자 : 몇번째 row부터 출력할지 ( 1번째 row면 0 (시작할 행 - 1) ) * SELECT - FROM A LEFT OUTER JOIN B ON ~ : 먼저 표..
정리노트 (JSP,JQUERY) * selectbox 선택값 가져오기 $(“#셀렉박스ID option:selected”).val(); $(“select[name=셀렉박스Name]”).val(); * 폼 유효성 검사 (빈칸인지 아닌지 검증) $(document).ready(function(){ $(‘#ex_form’).submit(function(){ if($(‘#title’).val==‘’){ alert(‘제목입력은 필수.’); return false; } }); }); * 체크박스 checked (value와 같은 값을 가지는 체크박스 선택) function a(){ for(var i=0;i
CodeSignal / Intro / Smooth Sailing (2/2) ⅩⅡ. sort by Height Some people are standing in a row in a park. There are trees between them which cannot be moved. Your task is to rearrange the people by their heights in a non-descending order without moving the trees. People can be very tall! // 값이 -1 인 원소는 그대로 두고 나머지 값들을 오름차순으로 정렬해라 Example Fora = [-1, 150, 190, 170, -1, -1, 160, 180], the output should be sortByHeight(a) = [-1, 150, 160, 1..
CodeSignal / Intro / Smooth Sailing (1/2) Ⅸ. All Longest Strings Given an array of strings, return another array containing all of its longest strings. // 가장 긴 문자열 출력 Example ForinputArray = ["aba", "aa", "ad", "vcd", "aba"], the output should be allLongestStrings(inputArray) = ["aba", "vcd", "aba"]. Input/Output [execution time limit] 3 seconds (java) [input] array.string inputArray A non-empty array. Guaranteed constraints: 1 ≤ inputA..
CodeSignal / Intro / Edge of the Ocean _2 왜 이지인지 모르겠는.. 나한테는 넘 하드 ,,.... Ⅶ. almostIncreasingSequence Given a sequence of integers as an array, determine whether it is possible to obtain a strictly increasing sequence by removing no more than one element from the array. Note: sequence a0, a1, ..., an is considered to be a strictly increasing if a0 < a1 < ... < an. Sequence containing only one element is also considered to be strictly inc..
CodeSignal / Intro / Edge of the Ocean _1 6번 부터는 찌끔 시간이 걸렸습니다. . Ⅳ. adjacentElementsProduct // 인접요소의 곱 Given an array of integers, find the pair of adjacent elements that has the largest product and return that product. Example For inputArray = [3, 6, -2, -5, 7, 3], the output should be adjacentElementsProduct(inputArray) = 21. 7 and 3 produce the largest product. // 아무래도 인접한 요소들의 곱 중에서 최댓값을 구하라는 것인듯 Input/Output [execution time limit] ..
CodeSignal / Intro / The Journey Begins 여기는 엄청엄청 쉽다 ..! SOOoooooooooooooooo EEEEEAsY~~~~~~~~~ Ⅰ. add Write a function that returns the sum of two numbers. // 두 수의 합 리턴 Example For param1 = 1 and param2 = 2, the output should be add(param1, param2) = 3. Input/Output [execution time limit] 3 seconds (java) [input] integer param1 Guaranteed constraints: -1000 ≤ param1 ≤ 1000. [input] integer param2 Guaranteed constraints: -1000 ≤ param2 ..