일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 거북이 대포 게임
- 웹 게임을 만들며 배우는 리액트
- Python
- 인프런
- react
- vs code 내 node
- 리액트
- spring-boot
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- react오류
- node.js로 로그인하기
- node.js 설치
- 자바스크립트
- Concurrently
- googleColaboratory
- JS 개념
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- 모두의 파이썬
- Do it 자바스크립트 + 제이쿼리 입문
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- 노드에 리액트 추가하기
- 모던자바스크립트
- Spring-Framework
- Colaboratory 글자 깨짐
- 따라하며 배우는 노드 리액트 기본 강의
- intellij
- 계산맞추기 게임
- props
- DB Browser
- 타자 게임 만들기
- Today
- Total
목록과거 프로그래밍 자료들 (235)
프로그래밍 삽질 중
출처 : http://www.yes24.com/Product/Goods/107478270 보통의 취준생을 위한 코딩 테스트 with 파이썬 - YES24 이 책은 손에 잡히는 코딩 테스트 합격 방법을 제시한다. 바로 “백준 플래티넘 5 & 코드 포스 파란색 랭크”로 목표 설정을 구체화한 것이다. 이 수준을 달성하면 웬만한 기업의 코딩 테스트 문 www.yes24.com * 최소, 최대(10818) https://www.acmicpc.net/problem/10818 10818번: 최소, 최대 첫째 줄에 정수의 개수 N (1 ≤ N ≤ 1,000,000)이 주어진다. 둘째 줄에는 N개의 정수를 공백으로 구분해서 주어진다. 모든 정수는 -1,000,000보다 크거나 같고, 1,000,000보다 작거나 같은 정..
출처 : http://www.yes24.com/Product/Goods/107478270 보통의 취준생을 위한 코딩 테스트 with 파이썬 - YES24 이 책은 손에 잡히는 코딩 테스트 합격 방법을 제시한다. 바로 “백준 플래티넘 5 & 코드 포스 파란색 랭크”로 목표 설정을 구체화한 것이다. 이 수준을 달성하면 웬만한 기업의 코딩 테스트 문 www.yes24.com * 사칙연산(10869) https://www.acmicpc.net/problem/10869 10869번: 사칙연산 두 자연수 A와 B가 주어진다. 이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오. www.acmicpc.net - 일반적인 사칙연산 a, b = map(int, input()...
출처 : https://github.com/ZeroCho/ts-all-in-one GitHub - ZeroCho/ts-all-in-one Contribute to ZeroCho/ts-all-in-one development by creating an account on GitHub. github.com https://github.com/microsoft/TypeScript/blob/main/lib/lib.es5.d.ts GitHub - microsoft/TypeScript: TypeScript is a superset of JavaScript that compiles to clean JavaScript output. TypeScript is a superset of JavaScript that compi..
출처 : https://github.com/ZeroCho/ts-all-in-one GitHub - ZeroCho/ts-all-in-one Contribute to ZeroCho/ts-all-in-one development by creating an account on GitHub. github.com https://github.com/microsoft/TypeScript/blob/main/lib/lib.es5.d.ts GitHub - microsoft/TypeScript: TypeScript is a superset of JavaScript that compiles to clean JavaScript output. TypeScript is a superset of JavaScript that compi..
출처 : https://github.com/ZeroCho/ts-all-in-one GitHub - ZeroCho/ts-all-in-one Contribute to ZeroCho/ts-all-in-one development by creating an account on GitHub. github.com * interface와 class를 각각 언제 써야 하나? ▶ interface - 자바스크립트로 변환 시 사라짐 - instanceof 키워드 못 씀 - interface 자체를 타입가드에서 사용 불가 ▶ class - 자바스크립트로 변환 시 유지됨 - instanceof 키워드 사용 가능 - interface 자체를 타입가드에서 사용 가능 (문제 있는 코드) [예시] interface Axios { g..
출처 : https://github.com/ZeroCho/ts-all-in-one GitHub - ZeroCho/ts-all-in-one Contribute to ZeroCho/ts-all-in-one development by creating an account on GitHub. github.com * 공변성, 반공변성, 이변성, 불변성 ▶ 함수 간에 서로 대입할 수 있냐, 없냐 여부 * 리턴값은 더 넓은 타입이면 대입 가능 * 매개변수는 더 좁은 타입이면 대입 가능 //해당 코드는 가능 function a(x: string | number): number { return +x; } a('1'); //1 type B = (x: string) => string | number; const b: B = ..
출처 : https://github.com/ZeroCho/ts-all-in-one GitHub - ZeroCho/ts-all-in-one Contribute to ZeroCho/ts-all-in-one development by creating an account on GitHub. github.com * forEach, map, filter에 대한 interface 부분 https://github.com/microsoft/TypeScript/blob/main/lib/lib.es5.d.ts GitHub - microsoft/TypeScript: TypeScript is a superset of JavaScript that compiles to clean JavaScript output. TypeScrip..
* 출처 : https://github.com/ZeroCho/ts-all-in-one GitHub - ZeroCho/ts-all-in-one Contribute to ZeroCho/ts-all-in-one development by creating an account on GitHub. github.com * 클래스는 interface를 따름 - public : 어느 곳에서나 가능 - private : 해당 클래스 내에서만 사용 가능 - protected : 해당 클래스 내에서만 가능, 상속한 경우에서도 사용 가능 //추상 interface A { //JS로 변환 시 사라짐 readonly a: string; b: string; } //구현 //[자바처럼 쓸 수 있음] class B implements ..