코딩테스트 SQL 코드카타 (Percentage of Users)
·
Daily 코드카타/SQL
문제Percentage of Users Attended a Contest - LeetCode Write a solution to find the percentage of the users registered in each contest rounded to two decimals.Return the result table ordered by percentage in descending order.In case of a tie, order it by contest_id in ascending order.The result format is in the following example. Example 1:Input: Users table:+---------+-----------+| user_id | user_..
코딩테스트 SQL 코드카타 (Project Employees)
·
Daily 코드카타/SQL
문제Project Employees I - LeetCode  Write an SQL query that reports the average experience years of all the employees for each project, rounded to 2 digits.Return the result table in any order.The query result format is in the following example. Example 1:Input: Project table:+-------------+-------------+| project_id | employee_id |+-------------+-------------+| 1 | 1 || 1 ..
2024년 11월 25일 TIL
·
TIL and WIL/TIL
오늘의 이모저모  오늘은 약속이 있어서 수업에 참석하지못했다. 저녁시간에 참여하여서 어떻게 프로젝트를 진행할지 파트를 가르고 내일 까지 한번해보기로 햇다.  확실히 느끼는 거지만... 하는사람과 안하는 사람이 나눠져 있다보니ㅐ 이거에 대해서 안타깝다고 생각한다...
2024년 11월 21일 TIL
·
TIL and WIL/TIL
오늘의 이모저모오늘 오전에는 마무리 특강을 듣고 저녁에는 챌린지반 수업을 들었다.  확실히 점점 시간이 지날수록 내용이 어려워 지는게 머리가 아프다. 내가 뭘 해야하고 이런게 아직은 정하기가 쉽지않다.   오늘 한 것오늘은 우선 팀프로젝트의 기초를 한번 세워봤다. 더보기LLM 기반 실시간 협업 프로젝트 계획서1. 시스템 설계 (??)예상 :실시간 기능 업데이트유저 인풋을 처리하는 2개의 LLM 모델 연결모델 1: 유저 인풋 기반 답변 생성.모델 2: 유저 인풋에서 중요한 부분 필터링.필터링한 내용을 벡터 DB에 병합하여 저장.2. 협업 문서2.1 미팅 미닛목적: 팀 회의 주요 결정 사항과 할 일을 명확히 정의.작성 내용:회의 날짜 및 시간.참석자 기록.논의 주제 및 결정 사항.각 팀원의 할 일과 마감일 ..
코딩테스트 SQL 코드카타 (Employee Bonus)
·
Daily 코드카타/SQL
문제Employee Bonus - LeetCode  Write a solution to report the name and bonus amount of each employeewith a bonus less than 1000.Return the result table in any order.The result format is in the following example. Example 1:Input: Employee table:+-------+--------+------------+--------+| empId | name | supervisor | salary |+-------+--------+------------+--------+| 3 | Brad | null | 4000..
코딩테스트 SQL 코드카타 (Average Time of Process per Machine)
·
Daily 코드카타/SQL
문제Average Time of Process per Machine - LeetCode There is a factory website that has several machines each running the same number of processes.Write a solution to find the average time each machine takes to complete a process.The time to complete a process is the 'end' timestamp minus the 'start' timestamp. The average time is calculated by the total time to complete every process on the machin..