일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- AI 경진대회
- leetcode
- SW Expert Academy
- dacon
- 파이썬
- Real or Not? NLP with Disaster Tweets
- gs25
- 금융문자분석경진대회
- 자연어처리
- hackerrank
- 우분투
- 데이콘
- Git
- Docker
- 맥북
- 캐치카페
- programmers
- github
- 더현대서울 맛집
- Baekjoon
- 편스토랑
- 프로그래머스
- 백준
- ubuntu
- 프로그래머스 파이썬
- ChatGPT
- 편스토랑 우승상품
- 코로나19
- PYTHON
- Kaggle
- Today
- Total
목록
반응형
전체 글 (1653)
솜씨좋은장씨
Implement a MyCalendar class to store your events. A new event can be added if adding the event will not cause a double booking. Your class will have the method, book(int start, int end). Formally, this represents a booking on the half open interval [start, end), the range of real numbers x such that start
Given two positive integers n and k. A factor of an integer n is defined as an integer i where n % i == 0. Consider a list of all factors of n sorted in ascending order, return the kth factor in this list or return -1 if n has less than k factors. Example 1: Input: n = 12, k = 3 Output: 3 Explanation: Factors list is [1, 2, 3, 4, 6, 12], the 3rd factor is 3. Example 2: Input: n = 7, k = 2 Output..
We are playing the Guess Game. The game is as follows: I pick a number from 1 to n. You have to guess which number I picked. Every time you guess wrong, I will tell you whether the number I picked is higher or lower than your guess. You call a pre-defined API int guess(int num), which returns 3 possible results: -1: The number I picked is lower than your guess (i.e. pick > num). 1: The number I ..
심리 성향 예측 AI 경진대회 출처 : DACON - Data Science Competition dacon.io 심리 성향 예측 AI 경진대회 1일차! 오늘은 먼저 베이스라인 코드와 토론에 나와있는 AutoML 코드를 돌려보기로 했습니다. 심리 성향 예측 AI 경진대회 출처 : DACON - Data Science Competition dacon.io 베이스라인 코드는 위의 링크에서 확인해보시면 됩니다. 베이스라인의 결과는! 0.6801542453 의 결과를 얻을 수 있었습니다. 베이스라인 코드가 LightGBM 모델로 작성되어있어 GridSearchCV 를 활용하여 최적의 파라미터를 찾아 성능을 높여 보자! 라고 생각하게 되었고 예전에 다른 대회를 진행해보면서 활용했던 코드를 가져와서 실행해보았습니다..
Reverse bits of a given 32 bits unsigned integer. Example 1: Input: 00000010100101000001111010011100 Output: 00111001011110000010100101000000 Explanation: The input binary string 00000010100101000001111010011100 represents the unsigned integer 43261596, so return 964176192 which its binary representation is 00111001011110000010100101000000. Example 2: Input: 11111111111111111111111111111101 Outp..
심리 성향 예측 AI 경진대회 출처 : DACON - Data Science Competition dacon.io 군에서 근무할 당시에 이런 심리 성향을 예측하는 것에 관심이 있었는데 최근 DACON( 데이콘 ) 에서 관련한 예측 경진대회가 열렸다고 하여 한 번 도전해보려고 합니다. 이상한 이유지만 무엇보다도 배경색이 제가 좋아하는 노란색이어서 그것이 마음에 들어 더더욱 도전해봐야겠다라는 생각이 들었습니다. 사실 처음엔 자연어처리 대회인 것 같아 관심이 갔던 부분이 더 컸기에 조금 아쉬운 부분이 있지만 그동안 나태해진 것 같았던 저를 돌아보며 열심히 해보려고 합니다. 심리 성향 예측에 관심이 있었거나 이런 대회를 해보고 싶었던 분이 있었다면 한 번 도전해보셔도 좋을 것 같습니다~ 그럼 앞으로 시간 날때마..
2020년은 코로나19로 인하여 일상생활에서 많은 부분들이 바뀌었습니다. 그 중 하나는 음식점, 가게 등을 방문할 때 카카오 또는 네이버를 통해 만든 QR 코드를 통하여 방문했었다는 기록을 남기는 전자출입명부가 있습니다. 잠깐 테이크 아웃을 해야하는 경우에도 이 전자출입명부를 활용해야하기 때문에 매번 카카오톡을 열고 # 메뉴에서 QR 코드를 켜는 것이 귀찮을 때도 있습니다. 이 글에서는 ios14에서 업데이트 되면서 추가된 뒷면탭 기능을 활용하여 QR코드로 이동하는 과정을 축소하여 좀 더 편리하게 QR 코드를 열어 사용하는 방법에 대해 적어보려 합니다. ios14 먼저 해당 방법을 활용하기 위해서는 사용하고 있는 아이폰의 OS를 최신 OS인 ios14로 업데이트를 진행하여야 합니다. 업데이트를 완료 후 ..
Given a singly linked list, determine if it is a palindrome. Example 1: Input: 1->2 Output: false Example 2: Input: 1->2->2->1 Output: true Follow up: Could you do it in O(n) time and O(1) space? Solution # Definition for singly-linked list. # class ListNode: # def __init__(self, val=0, next=None): # self.val = val # self.next = next class Solution: def isPalindrome(self, head: ListNode) -> bool..