일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- leetcode
- Docker
- programmers
- 편스토랑 우승상품
- 금융문자분석경진대회
- AI 경진대회
- Kaggle
- gs25
- github
- 편스토랑
- 백준
- hackerrank
- 맥북
- 우분투
- 프로그래머스
- 캐치카페
- ChatGPT
- 데이콘
- 더현대서울 맛집
- 코로나19
- Baekjoon
- 자연어처리
- 프로그래머스 파이썬
- PYTHON
- 파이썬
- SW Expert Academy
- ubuntu
- Real or Not? NLP with Disaster Tweets
- dacon
- Git
- Today
- Total
목록
반응형
전체 글 (1651)
솜씨좋은장씨
1일 1문제 60일차! 오늘의 문제는 프로그래머스의 더 맵게 입니다. 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 첫번째 시도 def solution(scoville, K): answer = -1 count = 0 check_flag = False while min(scoville) < K: scoville = sorted(scoville, reverse=True) scoville.append(scoville.pop() + (scoville.pop() * 2) ) if len(scoville) == 1 and scoville[0] < K: check_f..
Given a time in 12-hour AM/PM format, convert it to military (24-hour) time. Note: Midnight is 12:00:00AM on a 12-hour clock, and 00:00:00 on a 24-hour clock. Noon is 12:00:00PM on a 12-hour clock, and 12:00:00 on a 24-hour clock. Function Description Complete the timeConversion function in the editor below. It should return a new string representing the input time in 24 hour format. timeConvers..
You are in charge of the cake for your niece's birthday and have decided the cake will have one candle for each year of her total age. When she blows out the candles, she’ll only be able to blow out the tallest ones. Your task is to find out how many candles she can successfully blow out. For example, if your niece is turning 4 years old, and the cake will have 4 candles of height 4, 4, 1, 3, sh..
[Python] Pycharm에서 unittest 사용해보기! Pycharm에서 unittest를 사용하는 방법에 대해서 정리해보려합니다. Step 3. Test your first Python application - Help | PyCharm Step 3. Test your first Python application Remember, in the first tutoria.. somjang.tistory.com 지난 글에서 테스트를 하면서 오류났던 부분을 디버깅을 통해서 고쳐보려합니다. Testing started at 5:53 오후 ... /Users/donghyunjang/PycharmProjects/MyTestPractice/venv/bin/python "/Applications/PyCharm ..
A queue is an abstract data type that maintains the order in which elements were added to it, allowing the oldest elements to be removed from the front and new elements to be added to the rear. This is called a First-In-First-Out (FIFO) data structure because the first element added to the queue (i.e., the one that has been waiting the longest) is always the first one to be removed. A basic queu..
Pycharm에서 unittest를 사용하는 방법에 대해서 정리해보려합니다. Step 3. Test your first Python application - Help | PyCharm Step 3. Test your first Python application Remember, in the first tutorial you’ve created your first Python application, and in the second tutorial you’ve debugged it. Now it’s time to do some testing. Choosing the test runner If you used nosetest, py.test www.jetbrains.com 위의 문서를 참조하여 작성하였습니다...
Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five integers. Then print the respective minimum and maximum values as a single line of two space-separated long integers. For example, arr = [ 1, 3, 5, 7, 9 ]. Our minimum sum is 1 + 3 + 5 + 7 = 16 and our maximum sum is 3 + 5 + 7 + 9 = 24. We would print 16 24 Function Descri..
아이패드에서 사용할 수 있는 파이썬 인터프리터를 찾아보던 중 앱스토어에서 CARNETS라는 앱을 발견했습니다. 처음에는 미리보기 사진을 보고 그저 기존에 만들어져 있는 주피터 노트북을 볼수있는 뷰어 정도로 생각했는데 실제로 사용해보니 거의 실제 노트북에서 사용하는 주피터 노트북과 비슷하게 사용이 가능했습니다. 먼저 어플리케이션을 실행하면 파일 어플리케이션을 실행했을때와 같은 화면을 보게됩니다. 왼쪽배너에서 iCloud Drive를 선택하고 여러 디렉토리중에 Carnets 디렉토리를 선택합니다. 그럼 새로 파일을 생성할 수 있는 버튼 하나와 welcome이라는 디렉토리가 보입니다. 여기서 Create Document를 클릭하면 다음과 같은 화면을 볼 수 있습니다. 파이썬 버전확인부터 라이브러리 설치 Dat..