분류 전체보기 477

IEEE 754 | 부동 소수점 표현법, single precision, biased exponent

IEEE 754 standard formats : 부동 소수점을 표현하는 표준 -1) single precision : 32bit - float -2) double precision : 64bit - double IEEE 754 - single precision의 형태 - (-1)^s * 1.bbbbb * 2^(+-E) IEEE에는 3 가지 구성요소가 있다. 1. sign bit (1bit) - 위 식에서 s를 담당 - 0이면, 양수 - 1이면, 음수 2. normalized significand/mantissa : 가수부분 (23bit) - 위 식에서 bbbb...b를 담당 - normalized라는 것은 123.45라는 수를 0.12345 * 10^3과 같은 형태로 바꾸는 것이다. - 그렇게 0.12..

Computer Science 2021.09.07

서울대학교 컴퓨터공학 세미나 1강 | 인공지능연구원 장병철 교수님 | 작성중

이 글은 서울대학교 컴퓨터공학세미나를 듣고 정리한 것으로 내용을 읽고 관심이 생기면, 이 수업을 연 서울대학교 컴퓨터공학부 사이트 컴퓨터공학세미나 | 서울대학교 컴퓨터공학부 (snu.ac.kr) 컴퓨터공학세미나 | 서울대학교 컴퓨터공학부 cse.snu.ac.kr 혹은 서울대학교 AI연구원 사이트를 방문해보아도 좋을 듯하다. 서울대학교AI연구원(AIIS) (snu.ac.kr) 2021년 2학기 서울대학교 컴퓨터공학세미나 수업은 각 대학의 인공지능대학원 센터장 / 인공지능 관련 벤처기업의 연사가 오셔서 강연을 하는 것으로 진행될 예정이라고 한다. 1. 인공지능연구원 장병탁 교수님 - AI연구원 - 인공지능의 진화 머신러닝의 진화 1. machine learning AI , 기계학습 원리, 종류, 모델 2. ..

Computer Science 2021.09.07

코드테스트 Arrays 초급 | find pivot index, minimum size Subarray sum | 코드없는 프로그래밍

기본 개념 : 슬라이딩 영상 - 코딩 테스트,초급, find pivot index - YouTube 문제 - (2) Find Pivot Index - LeetCode Find Pivot Index - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com pivot의 범위는 1에서 출발해서, len(s) - 2까지 돈다. pivot 왼쪽에 있는 숫자들의 합과 pivot 오른쪽에 있는 숫자들의 합이 같으면, pivot을 return한다. 내 풀이 - 푸는 데 한참 걸렸다...

코딩테스트 Arrays moveZeros | 코드없는 프로그래밍

코딩 테스트, 초급, moveZeros - YouTube 문제 출처 - (1) Move Zeroes - LeetCode Move Zeroes - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 내 풀이 class로 되어있어서 신기함. class Solution: def moveZeroes(self, nums): index = 0 count = 0 while True: if index == len(nums) - count: return nums else: if nu..

코딩테스트 기초 배열 Binary Search | 코드없는 프로그래밍

출처 코드없는 프로그래밍 코딩테스트, 기초, 배열 인터뷰 바이너리 서치 - YouTube array - binary search 배열이 정렬이 되어있는 상태에서 어떤 값을 찾아달라! 어떤 배열 [1,3,5,6,7,15,20]에서 15의 인덱스를 찾고자 한다면? #어떤 배열 [1,3,5,6,7,15,20]에서 15의 인덱스를 찾고자 한다면? def solution(s, a): index = 0 search_index = 0 while True: if a == s[search_index]: index = search_index break elif a < s[search_index]: search_index //= 2 else: search_index += len(s) search_index //= 2 ret..

코딩테스트 Arrays 이론 | 코드없는 프로그래밍

출처 - 코드없는 프로그래밍 인터뷰 배열 기초 - YouTube Array - 가장 간단한 자료 구조 array란 데이터들이 연속적으로 이어져있고 랜덤 엑세스를 지원하는 자료 구조를 말한다. * 랜덤 엑세스 - 인덱스를 통해 바로 접근할 수 있게 해준다. 배열 문제는 인덱스를 사용할 수 있다는 점을 중요하게 사용하게 됨. ex - array를 활용한 BackTracking (?) 기본적인 문제의 경우, sorting과 관련이 된다. sorting의 종류에는 heap sort / quick sort / merge sort가 있다. 배열이 stable하면 merge sort 배열이 unstable하면 quick sort, heap sort를 사용한다. 이때 stable한 것은, 정렬이 된 후에도 ABCDE ..

Back to 알고리즘! | 코딩테스트 연습 level 2- 124 나라의 숫자들

코딩테스트 연습 - 124 나라의 숫자 | 프로그래머스 (programmers.co.kr) 코딩테스트 연습 - 124 나라의 숫자 programmers.co.kr def solution(n): answer = '' # 3을 빼고 3을 나누는 것을 반복한다. listing = [ '4','1', '2'] repeat = 1 while True: if n < 3: answer+= listing[n] break else: if n % 3 == 0: answer += listing[0] n = n // 3 - 1 if n == 0: break else: answer += listing[n%3] n //= 3 if n == 0: break answer = answer[::-1] return answer print..

What is Docker Compose? | 도커 컴포즈를 알아보자 | 발표 자료

🐳 docker compose 🐙 🐳 index 🐙 🐳 What is docker compose?🐙 overview of docker compose 🐳 | 도커 컴포즈 공식 문서 (tistory.com) overview of docker compose 🐳 | 도커 컴포즈 공식 문서 참고 - https://docs.docker.com/compose/ Overview of Docker Compose docs.docker.com 참고 2 - Orientation and setup | Docker Documentation 도커 도큐먼트도 곁들이기 :) 🐳 overview of docker compose 🐳.. tomatolife.tistory.com 🐳 실습 🐙 what is Docker Compose? | 🐳..

compose documentation 🐳 | 도커 컴포즈 공식 문서 2 | 실습 준비용!

참고 - Overview of Docker Compose | Docker Documentation Overview of Docker Compose docs.docker.com 🐳 Compose documentation 🐳 Installing Compose Getting started with Compose Get started with Django Frequently asked questions Command line reference Compose file reference 🐳 Installing Compose 🐳 🐳 Getting started with Compose 🐳 🐳 Getting started with Django 🐳 🐳 FAQ 🐳 🐳 Command line reference 🐳 🐳 Comp..

카테고리 없음 2021.08.30

overview of docker compose 🐳 | 도커 컴포즈 공식 문서 | 개념편

참고 - https://docs.docker.com/compose/ Overview of Docker Compose docs.docker.com 참고 2 - Orientation and setup | Docker Documentation 도커 도큐먼트도 곁들이기 :) 🐳 overview of docker compose 🐳 컴포즈는 여러 개의 도커 컨테이너를 돌릴 때 사용한다. 컴포드가 깔려있으면, YAML 파일로 전체 application의 서비스를 구성해서 각각을 실행시키는 것이 아니라 하나의 명령어로 여러 컨테이너로 구성된 서비스를 시작할 수 있다. $ docker-compose up 얘 하나면 끝! 컴포즈의 기능을 더 알아보려면 다음 링크에 들어가면 된다. the list of features. 그..