일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 릿코드풀이
- python Leetcode
- 알고리즘풀이
- 파이썬릿코드풀기
- binary search
- leetcode풀기
- 알고리즘풀기
- python sorted
- 파이썬 릿코드
- python 알고리즘
- leetcode풀이
- python zip_longest
- 릿코드
- LeetCode
- 코틀린기초
- leetcode 풀기
- 파이썬알고리즘풀기
- 릿코드 파이썬
- 파이썬 프로그래머스
- python priority queue
- 잇츠디모
- python 릿코드
- 파이썬알고리즘
- 릿코드풀기
- 상가수익률계산기
- 파이썬 알고리즘
- 파이썬릿코드
- 파이썬 알고리즘 풀기
- 릿코드 풀기
- python xor
- Today
- Total
목록전체 글 (273)
소프트웨어에 대한 모든 것
파이썬에 pip로 설치된 모든 패키지에 대한 정보를 requirements.txt 파일로 생성 가능함 pip freeze > requirements.txt 위와 같이 생성하면 이상한 경로가 들어가게 되고 설치 시, "No such file or directory" 에러가 발생함. 아래 명령어를 사용해서 깔끔하게 패키지 정보를 추출 가능함 pip list --format=freeze > requirements.txt
파이참에서 None-ASCII characters 경고 제거하는 방법입니다. 1. 한글 클래스명이나 변수명을 사용하는 경우가 있습니다. 2. ASCII 문자를 사용하지 않으면 "None-ASCII characters" 워닝이 발생합니다. 상당히 거슬립니다. 3. pycharm 설정창 들어가서 해당 옵션은 off 할 수 있습니다. Settings -> Editor -> Inspections -> Non-ASCII characters 체크 박스를 해제 합니다. 4. 해제 후의 모습입니다. None-ASCII Characters 경고 문구가 사라졌습니다.
크롬이 자동업데이트되면 버젼 문제로 selenium에서 문제가 발생한다. 이러한 문제를 해결하기 위한, 크롬 드라이버를 자동으로 업데이트하는 패키지가 이미 존재한다. pip install chromedriver-autoinstaller 아래와 같이 사용하면 된다 import chromedriver_autoinstaller # 크롬 드라이버 다운로드. 이미 동일 버전이 존재한다면 다운로드 SKIP chromedriver_filepath = chromedriver_autoinstaller.install() # 크롬 드라이버 인스턴스 생성 chrome = webdriver.Chrome(chromedriver_filepath, chrome_options=options)
문제) 57. Insert Interval You are given an array of non-overlapping intervals intervals where intervals[i] = [starti, endi] represent the start and the end of the ith interval and intervals is sorted in ascending order by starti. You are also given an interval newInterval = [start, end] that represents the start and end of another interval. Insert newInterval into intervals such that intervals is ..
문제) 100. Same Tree Given the roots of two binary trees p and q, write a function to check if they are the same or not. Two binary trees are considered the same if they are structurally identical, and the nodes have the same value. Example 1: Input: p = [1,2,3], q = [1,2,3] Output: true Example 2: Input: p = [1,2], q = [1,null,2] Output: false Example 3: Input: p = [1,2,1], q = [1,1,2] Output: fa..
문제) 2233. Maximum Product After K Increments You are given an array of non-negative integers nums and an integer k. In one operation, you may choose any element from nums and increment it by 1. Return the maximum product of nums after at most k operations. Since the answer may be very large, return it modulo 109 + 7. Note that you should maximize the product before taking the modulo. Example 1: ..
문제) 520. Detect Capital We define the usage of capitals in a word to be right when one of the following cases holds: All letters in this word are capitals, like "USA". All letters in this word are not capitals, like "leetcode". Only the first letter in this word is capital, like "Google". Given a string word, return true if the usage of capitals in it is right. Example 1: Input: word = "USA" Out..
제목 문제) 1834. Single-Threaded CPU You are given n tasks labeled from 0 to n - 1 represented by a 2D integer array tasks, where tasks[i] = [enqueueTimei, processingTimei] means that the ith task will be available to process at enqueueTimei and will take processingTimei to finish processing. You have a single-threaded CPU that can process at most one task at a time and will act in t..