국비 교육 95일차 - vue 활용 검색페이지 만들기
vue 기본을 급박하게 배우고.. 바로 프로젝트에 적용을 해봤다. 내가 맡은 부분은 중고책과 인터넷강의 목록을 검색해서 보여주는 기능이었다. mapper부터 시작해서 차근차근 올라가보도록 하겠다. WHERE title LIKE '%'||#{userFind}||'%' WHERE author LIKE '%'||#{userFind}||'%' SELECT no, poster, title, author, price, sale_price, num FROM (SELECT no, poster, title, author, price, sale_price, rownum as num FROM (SELECT no, poster, title, author, price, sale_price FROM book_s )) WHERE ..
[Java] 프로그래머스 모의고사 - level1
package programmers.leve1; import java.util.*; public class 모의고사 { public int[] solution(int[] answers) { int[] answer= {}; int[] a1 = {1,2,3,4,5}; int[] a2 = {2, 1, 2, 3, 2, 4, 2, 5}; int[] a3 = {3, 3, 1, 1, 2, 2, 4, 4, 5, 5,}; int[] score = new int[3]; for(int i=0; i