제이쿼리(JQuery)란 무엇일까? jQuery는 자바스크립트를 보다 쉽게 활용할 수 있게 해주는 오픈소스 기반의 라이브러리이다. 짧고 단순한 코드로도 웹 페이지를 풍성하게 만들어줄 수 있다. 주요 웹 브라우저의 구버전을 포함한 대부분의 브라우저에서 지원됩니다. HTML DOM을 손쉽게 조작할 수 있으며, CSS 스타일도 간단히 적용할 수 있습니다. 애니메이션 효과나 대화형 처리를 간단하게 적용해 줌 같은 동작을 하는 프로그램을 더욱 짧은 코드로 구현할 수 있습니다. 다양한 플러그인과 참고할 수 있는 문서가 많이 존재합니다. 오픈 라이선스를 적용하여 누구나 자유롭게 사용 가능 제이쿼리(JQuery) 적용방법 파일 자체 다운로드, 다운로드 후 다음코드 입력 제이쿼리 CDN, 다운로드 하지 않고 코드만 입력..
순번 study 과제설명 6 jquery tutorial : https://www.w3schools.com/jquery/default.asp jquery tutorial 에서 필요한 기능 정리(blog or dynalist, notion 등) ajax 이해 및 실습해보기. 7 https://jqueryui.com/accordion/ jquery 원하는 예제 골라서 직접 만들어보기. sql tutorial : https://www.w3schools.com/sql/default.asp SQL Study css framework(bootstrap, UI kit, foundation, Normalize, Material Design...) 팀별로 선택하여 study 8 https://www.javatpoint...
해당 문제는 leetcode에서 가져왔습니다: https://leetcode.com/problems/summary-ranges/ Summary Ranges - 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 문제 분석 해당 문제는 말그대로 숫자들의 배열인 nums를 압축해서 표현하는 문제입니다. 예제 1에서 [0,1,2,4,5,7]이라는 input이 들어오면 0, 1, 2 => [0, 2] 4, 5 => [4, 5] 7 => [7] 로 표현하라고 합니다. 저는 이..
해당 문제는 다음 leetcode의 문제입니다: https://leetcode.com/problems/single-number/ Single 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 #define MAXSIZE 30000 class Solution { public: int singleNumber(vector& nums) { int positive[MAXSIZE] = {0, }, negative[MAXSIZE]={0, } ; for(vecto..
해당 문제는 아래 링크에서 가져왔습니다: https://leetcode.com/problems/count-primes/ Count Primes - 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 문제 분석 문제를 간단히 읽어보니 소수를 구하는 문제였습니다. 입력받은 숫자까지의 소수의 갯수가 몇개인지를 출력하면 되는 문제입니다. 다만, 주어진 인풋의 범위가 크다는 것이 문제였습니다. ${0