DevinAI 소프트웨어를 구매하세요 => (Devin에서는) AI 소프트웨어를 채용하세요 Open DevinDevin이 그걸 develp한 코드 제시 => 스스로 발전하는 AI Aider- Percent of new code written by aider, by relase => 80%가 넘어감(진짜 스스로 자가 발전하는 것) AI의 진화- 단순한 작업 자동화를 넘어 소프트웨어의 전체 개발 과정을 AI가 주도하는 시대로 접어들고 있음- 25.04.03기준 ChatGPT 출시한지 불과 2년반정도밖에 안됨 So, 개발자는 자멸할까? => NO개발자 역할의 진화- 개발자는 AI 작업을 지시하고 조율하는 역할- AI는 개발자의 창의적 역량을 도와줄 것임 소프트웨어 기술의 발전All about 추상화(복잡성의 ..

Create React App(CRA)은 더이상 관리되지 않는 프로젝트임 → 프로젝트 생성에는 Vite 도구를 쓰는 것이 권장됨빈 폴더를 만들고 터미널에 아래 코드 실행npm create vite@latest . -- --template react필요한 패키지들(실행에 필요한 코드들)을 설치, 설치에 시간이 꽤 걸릴 수 있음npm install 설치가 끝나면 node_modules 폴더 새로 생김. 아래 명령어로 실행npm run dev React v18 이후 문법2022년 3월 8일 이후로 리액트의 18 버전이 나옴index.js 파일에서 코드를 쓰는 방식(Vite에서는 src/main.jsx)이 바뀜과거에는 ReactDOM.render() 함수를 사용하던 문법에서 ReactDOM.createRoot(..

1. node.js 설치2. vscode 설치3. 로컬 컴퓨터에 작업할 폴더 생성4. 해당 폴더에서 vscode 열기5. 아래의 커맨드 실행create-react-app으로 리액트 프로젝트 생성npm init react-app 혹은 폴더를 VS Code로 열고 터미널에서 npm init react-app .개발 모드 실행npm run start개발 모드 종료Ctrl + C 6. 리액트 개발자 도구 설치react developer tools 검색 - chrome 웹 스토어 들어가기 & 추가 버튼을 눌러 설치https://chromewebstore.google.com/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi React Developer ..
1. 문제https://www.acmicpc.net/problem/4779 2. 풀이def change_cantor(list): cube_root = len(list)**(1/3) breakpoint = int(len(list) / 3) if(cube_root == 1): print(list[0], end='') return else: list1, list2, list3 = list[0:breakpoint], list[breakpoint:breakpoint*2], list[breakpoint*2:] list2 = [' ' for _ in range(len(list2))] change_cantor(list1) ..
1. 문제https://www.acmicpc.net/problem/2108 2. 풀이import sysfrom collections import Counterinput = sys.stdin.readlinen = int(input())digits = []total_sum = 0for i in range(n): x = int(input()) digits.append(x) total_sum += x# 산술평균print(round(total_sum / n))# 중앙값digits.sort()print(digits[n//2])# 두 번째로 작은 최빈값num_counts = Counter(digits)freq_list = sorted(num_counts.items(), key=lambda x: (..
1. 문제https://www.acmicpc.net/problem/26069 2. 풀이import sysinput = sys.stdin.readlineN = int(input())chong = ["ChongChong"]for _ in range(0, N): x, y = map(str, input().strip().split()) if x in chong: chong.append(y) elif y in chong: chong.append(x) else: continueresult = list(set(chong))print(len(result))
- Total
- Today
- Yesterday
- 브라우저뜻
- C언어
- 브라우저
- python
- 직사각형
- 삼각형과세변
- 배수
- 26069
- 붙임성 좋은 총총이
- 피보나치수5
- 27323
- 백준
- 점근적표기
- 베라의 패션
- 다음소수
- SW생명주기
- 4779
- 칸토어 집합
- C99
- 약수
- 25304
- 알고리즘
- 약수들의합
- 파이썬
- 데이터추상화
- 25314
- SWLIfeCycle
- 배수와약수
- 개발계발
- 과제안내신분
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |