본문 바로가기

전체 글150

[영단어] Spring boot docs 영단어 (1 ~ 30) Spring Boot Reference Documentation docs.spring.io/spring-boot/docs/current/reference/htmlsingle/ Spring Boot Reference Documentation This section goes into more detail about how you should use Spring Boot. It covers topics such as build systems, auto-configuration, and how to run your applications. We also cover some Spring Boot best practices. Although there is nothing particularly spe docs.sp.. 2020. 12. 1.
[도서 리뷰] 자바 프로젝트 필수 유틸리티 www.kyobobook.co.kr/product/detailViewKor.laf?ejkGb=KOR&mallGb=KOR&barcode=9791162240700&orderClick=LEA&Kc= 자바 프로젝트 필수 유틸리티 - 교보문고 이 책은 자바 프로젝트를 수행하는 데 유용한 깃/깃허브, 젠킨스, 메이븐, 그레이들, SBT를 협업 관점에서 소개합니다. 단순히 기능만 소개하는 것이 아니라 현업에 유용한 플러그인들을 활용하 www.kyobobook.co.kr 자바 언어 생태계에서 진행되는 프로젝트의 필수 유틸리티를 다루는 책이다. 빌드, 형상관리, 배포, 협업을 위해서는 플러그인이 필수이며 현업에서 활발하게 사용되고 있다. 그 중 이 책에서는 메이븐, 그레이들, SBT , 깃/깃허브, 젠킨스 등을 다루고 .. 2020. 11. 30.
[leetcode] SymmetricTree https://leetcode.com/problems/symmetric-tree/ Symmetric Tree - 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 import exam.TreeNode; import java.util.ArrayDeque; import java.util.Queue; public class SymmetricTree { // recursive public static boolean isSymmetric(TreeNode root) { if(.. 2020. 11. 29.
[leetcode] SameTree https://leetcode.com/problems/same-tree/ Same Tree - 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 import exam.TreeNode; public class SameTree { public static boolean isSameTree(TreeNode p, TreeNode q) { if(p == null && q == null) return true; else if(p == null || q == null) retu.. 2020. 11. 29.
[leetcode] Minesweeper https://leetcode.com/problems/minesweeper/ Minesweeper - 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 import java.util.ArrayDeque; import java.util.Queue; public class Minesweeper { public static void main(String[] args) { char[][] chars = {{'E', 'E', 'E', 'E', 'E'}, {'E', 'E', .. 2020. 11. 29.
[leetcode] LongestIncreasingSubsequence https://leetcode.com/problems/longest-increasing-subsequence/ Longest Increasing Subsequence - 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 public class LongestIncreasingSubsequence { public static void main(String[] args) { System.out.println(lengthOfLIS(new int[] {10,9,2,5,3,7.. 2020. 11. 29.
[leetcode] GameofLife https://leetcode.com/problems/game-of-life/ Game of Life - 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 import java.util.Arrays; public class GameofLife { public static void main(String[] args) { gameOfLife(new int[][] { {0,1,0}, {0,0,1}, {1,1,1}, {0,0,0} }); } // Any live cell .. 2020. 11. 29.
[leetcode] DiameterofBinaryTree https://leetcode.com/problems/diameter-of-binary-tree/ Diameter of Binary Tree - 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 import exam.TreeNode; public class DiameterofBinaryTree { public static void main(String[] args) { TreeNode treeNode1 = new TreeNode(4); TreeNode treeNod.. 2020. 11. 29.
[leetcode] CourseSchedule https://leetcode.com/problems/course-schedule/ Course Schedule - 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 import java.util.ArrayList; import java.util.List; public class CourseSchedule { public static void main(String[] args) { System.out.println(canFinish(2,new int[][] {{0,.. 2020. 11. 29.