본문 바로가기

전체 글

(41)
페이스북 인턴 인터뷰 1차 합격 11/4일 1st round interview 11/5일 1st round interview 합격이메일 45분 면접을 위해 지난 6주 동안 굉장히 많은 노력을 했었다. 학부를 마치고 석사, 박사를 하면서 본격적인 '취준'을 해본적이 없었는데 이번 인턴십 지원을 하며 아 이런게 취준생활이구나를 생생히 느낄 수 있었다. 우선 면접 연락이 많이 오지 않아서 초조해졌었다. International student라는 이유로 desk reject을 바로 날려준 회사들도 왕왕 있었고, Epidemiology 전공으로 데이터 사이언스 취직을 하는 것이 일반적인 루트는 아니기에 서류에서도 걸러지는 경우가 꽤 있었다. 오히려 아예 빅테크 펌들이 내 서류를 통과시켜주는 경우가 생겼다. (취준도 정량적인 순서매김이 아님) 1..
[SQL]leetcode medium 뿌시기 2021/10/31 1. #608. Tree Node (14min) Tree: id | p_id id is the primary key column for this table. *Each node in the tree can be one of three types: Leaf/Root/Inner(neither a leaf node nor a root node) Write an SQL query to report the type of each node in the tree. Return the result table ordered by id in ascending order. The query result format is in the following example. --output: id | type #..
놀랍지도 않게 차사고가 난 날 21/10/28 오늘은 아침부터 무슨 일이 일어날것만 같은 하루였다. 1. 컨디션 난조 - 준비되지 못한 아침 요새 계속 과로해서인지 온 몸에 rash가 가득 생겨서 시간을 쪼개 Infirmary에 다녀왔다. 선생님께서는 원인을 모르겠지만 우선 가려움증을 완화해보자며 각종 항생제와 알러지 약을 네 개 처방해주셨다. 특히 OTC보다 강한약이라며 처방해준 약은 부작용중에 하나가 무척 졸리게 만든다는 것이라고 했다. 약 기운인지 자기전 약먹고 아침에 눈을 떠보니 그만 8시 5분이었다. 오늘은 코비드팀 근무가 있는 날이라 8시부터 근무를 했어야 하는것을... 많은 준비 과정을 포기한 후 8시 20분 자연인 날 것의 상태로 근무후 지각한 만큼 추가근무를 하여 5시간 근무를 내리 채웠다. 일이 오전에 많지 않아서 ..
[SQL] Leetcode easy 문제 뿌시기 21/10/26 9:11PM - 11:11PM 2시간동안 최대한 풀기 1. #1084. Sales Analysis III Product: product_id | product_name | unit_price Sales: seller_id | product_id | buyer_id | sale_date | quantity | price Write an SQL query that reports the products that were only sold in the spring of 2019. That is, between 2019-01-01 and 2019-03-31 inclusive. Return the result table in any order. SELECT product_id, product_nam..
[Product Sense] 채용공고를 기반으로 공부하기(1) - 토스(Toss) Data analyst Product sense 인터뷰를 준비하는 과정에서 나의 답변이 실무적인 관점에서 매우 모호하고 뜬구름 잡는 소리라는 생각이 들었다. 가장 좋은 방법은 실무에서 그들이 어떤식으로 문제를 해결해나가는지를 관찰하는 것이라고 생각하여, Data analyst 직군의 채용공고를 살펴보기로 한다. 첫 번째 기업은 대한민국에서 1800만 가입자를 보유하고 있는 핀테크 기업인 토스이다. 토스는 데이터를 기반으로 의사결정을 내릴 수 있도록 많은 노력을 기울이고 있으며, 내가 현재 준비하고 있는 Data Analyst에 대한 채용공고도 업로드 되어있다. Toss Data Analyst (Global) : https://toss.im/career/job-detail?job_id=4571130003 원하는 업무 역량: 1)..
[SQL edge case] 문제를 정확하게 파악하기 Questions from leetcode 1. Customers placing the largest number of orders => 단순하게 MAX(order_number)라고 했는데 여기서 order_number는 주문번호이기에 크기 비교용이 아님. 따라서 각 customer마다 몇 건의 order record가 있는지를 count해서 그 빈도가 가장 큰 사람의 customer_id를 제시해야함. SELECT customer_number FROM orders GROUP BY customer_number ORDER BY COUNT(*) DESC LIMIT 1; SELECT customer_number FROM orders GROUP BY customer_number HAVING COUNT(custo..
[D-11] things to improve 1. General Information 1) Why Facebook (Epidemiologyist -> Data Scientist) - 1분 분량으로 내가 왜 이 회사, 이 포지션에 지원했는지 준비하기 2) What prior experience that you work as a team - 인간적인 느낌을 줄 수 있는 사적인 경험을 얘기하기 3) What is your biggest contribution to the team - 박사 과정중에서 메인으로 했던 연구 토픽을 소개하고, 그 중에서 가장 성과가 좋았던 프로젝트 하나를 예시로 들기 2. Product analysis 1) 새로운 서비스 런칭시 고려할 점 - 왜 이런 서비스가 있어야하는지 (WHY) - 왜 이 방법/포맷으로 해야하는지 (HOW..
[Metric Change] increased click on a search result 10/20(수) Lauren과의 인터뷰연습 Q1. You notice that the number of users that clicked on a search result about a FB event increased 10% week-over-week. How would you investigate? How do you decide if this is a good thing or a bad thing? Q2. You notice that the percentage of users that clicked on a search result about a Facebook Event increased 10% week-over-week. How would you investigate? delve into wit..