목표달성 백준장학금 3주차
<알고리즘 문제 하루에 하나씩 풀고 블로그에 정리>
8/7
https://ethereal-coder.tistory.com/103
코드트리 [자바 java] 피보나치 수
https://www.codetree.ai/missions/2/problems/fibonacci-number?utm_source=clipboard&utm_medium=text 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장
ethereal-coder.tistory.com
8/8
https://ethereal-coder.tistory.com/104
코드트리 [자바 java] 정수 사각형 최대 합
https://www.codetree.ai/missions/2/problems/maximum-sum-path-in-square?utm_source=clipboard&utm_medium=text 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈
ethereal-coder.tistory.com
8/9
https://ethereal-coder.tistory.com/108
백준 [자바 java] 10797 : 10부제
https://www.acmicpc.net/problem/10797 10797번: 10부제 서울시는 6월 1일부터 교통 혼잡을 막기 위해서 자동차 10부제를 시행한다. 자동차 10부제는 자동차 번호의 일의 자리 숫자와 날짜의 일의 자리 숫자가
ethereal-coder.tistory.com
8/10
https://ethereal-coder.tistory.com/109
코드트리 [자바 java] 최소 경로로 탈출하기
https://www.codetree.ai/missions/2/problems/escape-with-min-distance?utm_source=clipboard&utm_medium=text 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의
ethereal-coder.tistory.com
8/11
https://ethereal-coder.tistory.com/111
[코드트리] 조삼모사
https://www.codetree.ai/problems/three-at-dawn-and-four-at-dusk?utm_source=clipboard&utm_medium=text 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직
ethereal-coder.tistory.com
8/12
https://ethereal-coder.tistory.com/113
[코드트리] 부분수열의 합이 m
https://www.codetree.ai/missions/2/problems/the-sum-of-the-subsequences-is-m?utm_source=clipboard&utm_medium=text 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부
ethereal-coder.tistory.com
8/13
https://ethereal-coder.tistory.com/116
[코드트리] 동전 거슬러주기
https://www.codetree.ai/missions/2/problems/coin-change?utm_source=clipboard&utm_medium=text 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석 국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코
ethereal-coder.tistory.com
<유데미 강의 일주일에 3개 이상 듣고 블로그에 정리>
https://ethereal-coder.tistory.com/106
[Node.js] Node.js패키지 생성 도구 & 외부패키지 사용하기
npm이란? 다른 사람들이 만들어둔 모듈을 우리가 사용할 수 있도록 도와준다. package란? 누군가 만들어놓은 Node.js 모듈(로그인, 메일 등의 기능을 하는 모듈들이 있다.) npm을 이용해서 Node.js 패키지
ethereal-coder.tistory.com
https://ethereal-coder.tistory.com/107
[React.js] React가 필요한 이유
1.컴포넌트화 방식 중복코드를 수정해야 할 상황이 생겼을 때 하나하나 일일히 수정하기에는 어려움이 있다. 리액트는 재사용해야하는 요소들을 컴포넌트 방식으로 사용할 수 있다. 이를 컴포
ethereal-coder.tistory.com
https://ethereal-coder.tistory.com/110
[React.js] Create React App
리액트를 다룰 때 다운받고, 관리해야 하는 패키지들이 많다. 그래서 이미 세팅 완료된 패키지인 Boiler Plate를 사용할 것이다. 리액트 어플리케이션 만들기 1. 새로운 폴더를 만든다. 2.터미널을
ethereal-coder.tistory.com
https://ethereal-coder.tistory.com/112
[React.js] JSX
리액트는 위와 같이 기능들을 컴포넌트로 분할해서 재사용할 수 있다. 컴포넌트 만들기 src 폴더에 위 사진과 같이 MyHeader.js파일을 만든다. 그 다음 위와 같이 입력합니다. 주의할 점은 컴포넌트
ethereal-coder.tistory.com
https://ethereal-coder.tistory.com/114
[React.js] State
사람은 배고픔, 적당함, 배부름 상태를 번갈아 유지하고, 이 상태에 따라 다른 행동을 수행한다. state도 마찬가지로 계속해서 변화하는 특정 상태를 의미하고, 상태에 따라 각각 다른 동작을 한
ethereal-coder.tistory.com
https://ethereal-coder.tistory.com/115
[React.js] Props
props는 컴포넌트에 데이터를 전달하는 방법이다. App 컴포넌트에서 counter컴포넌트로 데이터를 전달하고 이를 사용해보자. prop 전달하기 이렇게 객체 안에 전달 할 값을 넣어준다.() 그럼 counter.js
ethereal-coder.tistory.com
<개발서적 2권 이상 읽기>
진행중