코딩(자바, 파이썬) 공부하는 중

고정 헤더 영역

글 제목

메뉴 레이어

코딩(자바, 파이썬) 공부하는 중

메뉴 리스트

  • 홈
  • 태그
  • 방명록
  • 분류 전체보기 (30)
    • 백준 연습 (15)
    • 코드업 연습(자바) (0)
    • 내돈내산 후기 (2)
    • project (2)
    • toy project (0)

검색 레이어

코딩(자바, 파이썬) 공부하는 중

검색 영역

컨텐츠 검색

전체 글

  • 따릉이 대시보드

    2022.07.12 by \시엔/

  • [백준] 11057 오르막 수 다이나믹 프로그래밍

    2022.06.20 by \시엔/

  • ch3 Transport Layer

    2022.04.30 by \시엔/

  • ch2 Applicaton Layer

    2022.04.29 by \시엔/

  • Chapter 1 Introduction (Computer Networking: A Top Down Apporach 7th Edition)

    2022.04.28 by \시엔/

  • [오류] npm install @mediapipe/face_mesh 오류

    2022.04.13 by \시엔/

  • [파이썬] 프로그래머스 소수 만들기

    2022.03.26 by \시엔/

  • [파이썬] 프로그래머스 크레인 인형뽑기 게임

    2022.03.23 by \시엔/

따릉이 대시보드

https://github.com/Nahyun-K/sw-project/tree/main/react GitHub - Nahyun-K/sw-project Contribute to Nahyun-K/sw-project development by creating an account on GitHub. github.com 배포 url https://buildthan.github.io/react-chart/ 서울시 공공자전거 따릉이 이용 분석 buildthan.github.io

project 2022. 7. 12. 12:12

[백준] 11057 오르막 수 다이나믹 프로그래밍

다이나믹 프로그래밍 조걸 1. 최적 부분 구조 - 큰 문제를 작은 문제로 나눌 수 있으며 작은 문제의 답을 모아서 큰 문제를 해결할 수 있습니다. 2. 중복되는 부분 문제 - 동일한 작은 문제를 반복적으로 해결해야 합니다. ** 다이나믹 프로그래밍 문제를 푸는 첫번째 단계는 주어진 문제가 다이나믹 프로그래밍 유형임을 파악하는 것이다. 특정한 문제를 완전 탐색 알고리즘으로 접근했을 때 시간이 매우 오래걸리면 다이나믹 프로그래밍을 적용할 수 있는지 해결하고 자 하는 부분 문제의 중복 여부를 확인해보자 ** 다이나믹 프로그래밍 문제를 보텀업 방식으로 풀었다. n의 값이 1부터 1000이므로 dp = [[0] * 10 for _ in range(1001)] n의 값을 자리수라고 생각을 하였다 n이 4이면 천의 ..

카테고리 없음 2022. 6. 20. 15:39

ch3 Transport Layer

chapter 3 outline 3.1 transport-layer services 3.2 multiplexing and demultiplexing 3.3 connectionless transport: UDP 3.4 principles of reliable data transfer 3.5 connection-oriented transport: TCP - segment structure - reliable data transfer - flow control - connection management 3.6 principles of congestion control 3.7 TCP congestion control 3.1 transport-layer services 수송 계층의 서비스 Transport ser..

카테고리 없음 2022. 4. 30. 11:39

ch2 Applicaton Layer

c2.1 principles of network applications Some network apps Creating a network app Application architectures Client-Server architecture P2P architecture Processes communicating Sockets Addressing processes App-layter protocol defines What transport service does an app need? Transprot service requirements: common apps Internet transport protocols services Internet apps: application, transport proto..

카테고리 없음 2022. 4. 29. 23:39

Chapter 1 Introduction (Computer Networking: A Top Down Apporach 7th Edition)

Chapter 1: introduction our goal: - get "feel" and terminology (느낌과 용어 공부) overview: - Internet - Protocol - network edge; hosts, access net, physical media - network core; packet/circuit switching, Internet structure (network는 두가지로 나뉜다 network edge / network core) - performance(네트워크의 성능을 나타내는 지표) : loss, delay, throughput - security - protocol layters, service models Roadmap 1.1 what is the int..

카테고리 없음 2022. 4. 28. 16:00

[오류] npm install @mediapipe/face_mesh 오류

npm install @mediapipe/face_mesh 하려고 했더니 오류 npm audit fix 해결 완료 https://coder-question-ko.com/cq-ko-blog/5264

카테고리 없음 2022. 4. 13. 02:20

[파이썬] 프로그래머스 소수 만들기

import math from itertools import combinations def solution(nums): answer = 0 arr = list(combinations(nums, 3)) for array in arr: res = 0 result = True for i in range(3): res += array[i] for i in range(2, int(math.sqrt(res) + 1)): if res % i == 0: result = False if result == True: answer += 1 return answer 소수의 판별: 개선된 알고리즘 (Python) import math # 소수 판별 함수 def is_prime_number(x): # 2부터 x의 제곱근까지의 모..

카테고리 없음 2022. 3. 26. 23:50

[파이썬] 프로그래머스 크레인 인형뽑기 게임

def solution(board, moves): answer = 0 array = [] for move in moves: i = 0 while i 1: if array[n-1] == array[n-2]: for i in range(2): array.pop() answer += 1 break else: i += 1 return answer 게임 화면 N x N 크기의 정사각 격자 array = [] 를 만들어 크레인이 인형을 집었을 때 넣는 바구니를 만들었다. len(array)가 2 이상일 때 arra..

카테고리 없음 2022. 3. 23. 22:01

추가 정보

인기글

최신글

페이징

이전
1 2 3 4
다음
TISTORY
코딩(자바, 파이썬) 공부하는 중 © Magazine Lab
페이스북 트위터 인스타그램 유투브 메일

티스토리툴바