목록전체 글 (298)
\(@^0^@)/

최근에 유데미에서 리액트 강의를 듣고 있는데, 아마 각 섹션마다 퀴즈가 있는 것 같음. 지금은 초반이라 아직 쉬운 개념들이지만, 나중에 후반으로 가면 헷갈렸던 용어들 재확인할 수 있는 좋은 기회! 쨋든 나중에 면접에 도움 될거 같으니, 차근차근 용어 및 정의들을 정리해보자. ( + 영어공부) Q : What is "JSX"? A : It's a special, non-standard syntax which is enabled in React projects. React 프로젝트에서 활성화되는 특수한 비표준 구문. + React projects like the ones we create via "crate-react-app" supoort JSX syntax. it gets compile to standa..

https://fomaios.tistory.com/entry/Udemy-%EC%8B%A4%EC%8B%9C%EA%B0%84-%ED%95%9C%EA%B8%80-%EC%9E%90%EB%A7%89%EC%9C%BC%EB%A1%9C-%EB%B3%B4%EB%8A%94-%EB%B0%A9%EB%B2%95featChrome

🐱👓 1. 문제 : 1152 https://www.acmicpc.net/problem/1152 🔥 2-1. 코드 및 풀이 (실패) ㅇ처음에는 너무 쉽게 생각해서 이런 식으로 구현하였는데, 첫 번째 예제에 바로 먹히길래 제출하였는데 당연히 탈락. const fs = require('fs'); const file = process.platform === 'linux' ? '/dev/stdin' : './input.txt'; let input = fs.readFileSync(file).toString().split("\n"); let words = input.join(",").split(" "); // The Curious Case of Benjamin Button console.log(words); // ..