목록전체 글 (27)
개발기록
문제 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list. You may assume the two numbers do not contain any leading zero, except the number 0 itself. 두개의 Null값이 아닌 정수의 값을 담고있는 linked List를 input값으로 주어진다.이 숫자들은 거꾸로 저장되어있으며 각 노드마다 한 개의..
Windows : 주석처리 ctrl + shift + / : 코드블럭 주석 처리 ctrl + shift + \ : 코드블럭 주석 해제 ctrl + / : 여러줄 주석처리 검색 ctrl + alt + H : 메서드 추적 자동완성 : ctrl + space Mac : 주석처리 ctrl + command + / : 코드블럭 주석 처리 ctrl + command + \ : 코드블럭 주석 해제 commend + / : 여러줄 주석처리 자동완성 : ctrl + command + space [preferences - keys - content assist에서 단축키 변환 필요]

1. 폴더 구성 프로젝트 폴더 : 스프링 프로젝트 Root java 폴더: .java파일 관리 resources 폴더 : 자원파일 관리 -스프링 설정 파일(xml) 또는 프로퍼티 파일 등이 관리됨 빌드시에 maven이 이 코드를 토대로 빌드하기 때문에, 개발자는 이대로 폴더를 구성해야 한다. 2. pom.xml pom.xml파일은 메이블 설정파일로 메이븐은 라이브러리를 연결해주고, 빌드를 위한 플랫폼이다. pom.xml에 의해 필요한 라이브러리만 다운받아서 사용할 수 있다. 역할 : 외부의 web repository에 있는 라이브러리를 내가 지금 개발중인 프로젝트에 삽입을 해주는 파일