일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- #abex크랙미4번
- java8
- #리버싱
- Spring
- #보안뉴스
- leetcode
- Easy
- #크랙미2번
- #크랙미 5번
- #크랙미3번
- #심플즈
- #abex
- #고클린
- #파밍
- 리버싱
- #크랙미 9번
- #abex크랙미
- GraphQL
- java
- #크랙미
- #크랙미4번
- #크랙미 10번
- springframework
- #심플즈 크랙미
- #보안이슈
- Today
- Total
목록분류 전체보기 (120)
Halo World
본 포스팅은 Inflearn 얄코님 강의를 수강하며 복습용으로 작성하였습니다. https://www.inflearn.com/course/%EC%96%84%ED%8C%8D%ED%95%9C-graphql-apollo/dashboard [무료] 얄팍한 GraphQL과 Apollo - 인프런 | 강의 ⚡ 짧고 굵은 전체 90분 강좌! 사이트의 코드들을 복붙하며 빠르게 GraphQL을 배우고 아폴로 사용법을 익히세요., - 강의 소개 | 인프런... www.inflearn.com React와 Apollo Client 실습을 위한 - 백앤드 서버 : https://gitlab.com/yalco/yalco-inflearn-graphql-apollo/-/tree/master/1-3-graphql-exp - 클라이언트 ..
본 포스팅은 Inflearn 얄코님 강의를 수강하며 복습용으로 작성하였습니다. https://www.inflearn.com/course/%EC%96%84%ED%8C%8D%ED%95%9C-graphql-apollo/dashboard [무료] 얄팍한 GraphQL과 Apollo - 인프런 | 강의 ⚡ 짧고 굵은 전체 90분 강좌! 사이트의 코드들을 복붙하며 빠르게 GraphQL을 배우고 아폴로 사용법을 익히세요., - 강의 소개 | 인프런... www.inflearn.com 유니언과 인터페이스 이전 예제에서는 각각의 배열이 특정 스칼라 타입이나 특정 커스텀 데이터 타입을 반환했지만, Union타입은 타입 여럿을 한 배열에 반환이 가능함 1. Equipment와 Supply를 함께 반환하기 given 데이터..
본 포스팅은 Inflearn 얄코님 강의를 수강하며 복습용으로 작성하였습니다. https://www.inflearn.com/course/%EC%96%84%ED%8C%8D%ED%95%9C-graphql-apollo/dashboard [무료] 얄팍한 GraphQL과 Apollo - 인프런 | 강의 ⚡ 짧고 굵은 전체 90분 강좌! 사이트의 코드들을 복붙하며 빠르게 GraphQL을 배우고 아폴로 사용법을 익히세요., - 강의 소개 | 인프런... www.inflearn.com 서버 구성요소 모듈화 이전 강의에서 살펴본 typeDefs와 Resolver는 모두 index.js 한 파일에 작성을 한 형태였는데, 각각을 모듈별로 쪼개어 파일을 구성하여 사용할 수 있다. https://www.apollographql..
본 포스팅은 Inflearn 얄코님 강의를 수강하며 복습용으로 작성하였습니다. https://www.inflearn.com/course/%EC%96%84%ED%8C%8D%ED%95%9C-graphql-apollo/dashboard [무료] 얄팍한 GraphQL과 Apollo - 인프런 | 강의 ⚡ 짧고 굵은 전체 90분 강좌! 사이트의 코드들을 복붙하며 빠르게 GraphQL을 배우고 아폴로 사용법을 익히세요., - 강의 소개 | 인프런... www.inflearn.com apollo-server 셋팅 1. 프로젝트 생성 및 실행 테스트 npm init npm start // package.json에서 "start" : "nodemon index.js"로 초기 셋팅 2. Mock DB 모듈 삽입 mock ..
본 포스팅은 Inflearn 얄코님 강의를 수강하며 복습용으로 작성하였습니다. https://www.inflearn.com/course/%EC%96%84%ED%8C%8D%ED%95%9C-graphql-apollo/dashboard [무료] 얄팍한 GraphQL과 Apollo - 인프런 | 강의 ⚡ 짧고 굵은 전체 90분 강좌! 사이트의 코드들을 복붙하며 빠르게 GraphQL을 배우고 아폴로 사용법을 익히세요., - 강의 소개 | 인프런... www.inflearn.com GraphQL은 Rest API 방식의 단점을 보완할 수 있는 방법 Rest API 방식의 단점 아래와 같은 경우가 발생하기 쉽다. - 불필요한 정보까지 받아오는 상황 (OverFetching) - 필요한 정보를 못 받아오는 상황 (Un..
https://leetcode.com/problems/merge-two-binary-trees/ class Solution { public TreeNode mergeTrees(TreeNode root1, TreeNode root2) { TreeNode head = root1; if(root1==null && root2==null) return null; if(root1==null && root2!=null) return root2; if(root1!=null && root2==null) return root1; root1.val+=root2.val; root1.left = mergeTrees(root1.left, root2.left); root1.right = mergeTrees(root1.right, ..
https://leetcode.com/problems/count-binary-substrings/ //풀이 봄 class Solution { /*public int countBinarySubstrings(String s) { int[] groups = new int[s.length()]; int idx = 0; groups[0]=1; for(int i=1;i
https://leetcode.com/problems/symmetric-tree/ class Solution { public boolean isSymmetric(TreeNode root) { return isMirror(root.right, root.left); } private boolean isMirror(TreeNode n1, TreeNode n2){ if(n1==null || n2==null) return n1==n2; return (n1.val == n2.val && isMirror(n1.left, n2.right) && isMirror(n1.right, n2.left)); } }
https://leetcode.com/problems/invert-binary-tree/ class Solution { public TreeNode invertTree(TreeNode root) { TreeNode head= root; if(root!=null) invert(root); return head; } private void invert(TreeNode n1) { if(n1==null) return; invert(n1.right); invert(n1.left); TreeNode tmp = n1.right; n1.right = n1.left; n1.left = tmp; } }
https://leetcode.com/problems/diameter-of-binary-tree/ class Solution { int max=0; public int diameterOfBinaryTree(TreeNode root) { int left = findDepth(root.left); int right = findDepth(root.right); return Math.max(left + right, max); } int findDepth(TreeNode node) { if(node==null) return 0; int left = findDepth(node.left); int right = findDepth(node.right); max = Math.max(left + right, max); r..