분류 전체보기 (438) 썸네일형 리스트형 [이분탐색] 릿코드 Easy 35 'Search Insert Position' (Python) https://leetcode.com/problems/search-insert-position/ Search Insert Position - 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 1. 정렬된 배열에 값을 넣으면 그 값에 대한 인덱스를 찾아주는 파이썬 라이브러리 사용 from bisect import bisect_left class Solution: def searchInsert(self, nums: List[int], target: int) -> int.. [이분탐색] 릿코드 Easy 278 'First Bad Version' (Python) https://leetcode.com/problems/first-bad-version/ First Bad Version - 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 원소의 값이 크기 때문에 이분 탐색으로 정답을 찾아야 함 # The isBadVersion API is already defined for you. # @param version, an integer # @return an integer # def isBadVersion(version): cla.. [이분탐색] 릿코드 Easy 704 'Binary Search' (Python) https://leetcode.com/problems/binary-search/ Binary Search - 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 Solution: def search(self, nums: List[int], target: int) -> int: def binary_search(array,target,start,end): if start>end: return None mid = (start+e.. [컴퓨터/IT][독후감] "오늘부터 개발자" - 김병욱 2021.11.12 ~ 2021.11.13 Score ❤❤❤❤ 갑자기 IT 관련 책을 읽고 싶어 져서 온라인 서점을 둘러보다가 막연하게 생각하던 ‘개발자’에 대해 제대로 알고, 소중한 시간과 에너지, 돈을 아껴 개발자라는 목표에 최대한 빨리 도달하라는 책의 문구를 보고 바로 결제하게 되었다. 책을 읽고 도움이 되는 정보들을 기록한 것이다. [개발자의 장점] 내가 생각한 아이디어를 직접 만들어 이용할 수 있고, 창업이나 사이드 프로젝트를 통해 주도적으로 일을 하며 수익을 창출할 수 있음 일을 하면서 성장한다는 느낌을 받을 수 있고, 내가 개발한 서비스로 인해 다른 누군가의 삶이 변화될 수 있다는 기쁨도 누릴 수 있음 [개발자의 단점] 항상 발생할 수 있는 에러에 24시간 대응해야 하고, 각각의 에러에 대해.. VSCode에 django 설치하고 Git 연결하기 (CentOS) 0. 준비 작업 https://jyj98020.tistory.com/114 Git과 CentOS(putty)에 ssh 공유하기 0-1. CentOS와 putty 설치하기 https://jyj98020.tistory.com/102?category=1015393 네트워크 설정" data-og-description="Virtual Box 홈페이지 접속 > Windows hosts > 다운로드 > 설.." data-og-host="jyj98020.. jyj98020.tistory.com 1. VSCode 설치하고 열기 + vscode에 python install 하기!! https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Vis.. Git과 CentOS(putty)에 ssh 공유하기 0-1. CentOS와 putty 설치하기 https://jyj98020.tistory.com/102?category=1015393 가상머신에서 Anaconda 설치 후 Jupyter 사용하기 (Putty 이용) 0. 가상 머신 환경 구축하는 방법은 아래 글을 참고하세요 :) https://jyj98020.tistory.com/101 CentOS 설치 > 네트워크 설정" data-og-description="Virtual Box 홈페이지 접속 > Windows hosts > 다운로드 > 설.. jyj98020.tistory.com 0-2. Git 설치하기 https://git-scm.com/downloads Git - Downloads Downloads macOS Windows Linux/Unix Old.. [머신러닝4] 실전연습/KNN 알고리즘으로 z-score 구하기 In [1]: from IPython.core.display import display, HTML display(HTML("")) In [126]: import pandas as pd from sklearn.neighbors import KNeighborsClassifier from sklearn.model_selection import train_test_split import numpy as np In [127]: df = pd.read_csv("./wine.csv") In [128]: df Out[128]: fixed acidity volatile acidity citric acid residual sugar chlorides free sulfur dioxide total sulfur dioxide.. Github Readme 꾸밀 때 참고할만한 사이트 아이콘 https://simpleicons.org/ Simple Icons 2219 Free SVG icons for popular brands. simpleicons.org 이름 소개 https://github.com/kyechan99/capsule-render#how-to-use GitHub - kyechan99/capsule-render: Dynamic Coloful Image Render :rainbow: Dynamic Coloful Image Render. Contribute to kyechan99/capsule-render development by creating an account on GitHub. github.com 이전 1 ··· 39 40 41 42 43 44 45 ··· 55 다음