Patrick Lin

@patricklin

Joined on Oct 10, 2018

  • contributed by < patri27826 > 開發環境 $ gcc --version gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. $ lscpu
     Like  Bookmark
  • contributed by < patri27826 > 第 1 週測驗題 測驗一 #### AAAA ```diff node_t *list_tail(node_t **left) { while ((*left) && (*left)->next)
     Like  Bookmark
  • Local Test Intructions // Up docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d --build // Up 2 node-app docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d --scale node-app=2 // Down everything docker-compose -f docker-compose.yml -f docker-compose.dev.yml down
     Like  Bookmark
  • 無逸煩 - Kris 207. Course Schedule 🧔‍: 你好,很高興你能參加我們這次的面談,這次想請你幫忙解決一些我們公司上遇到的一些問題,我們在日常規劃上會有一些排程的問題,當中就會有一些事情是必須在另一件事情之前完成的,如果我今天給你一個pair(a,b),代表說你要做a之前必須完成b,好那我想問的是,假設我今天有很多pair,我能不能得到一個可以依序完成的排序,我同時還會給你一個Input是任務的個數,假設說今天任務的個數是5,則所有pairs的值都會介於1-5之間,也就是類似(1,2) (2,3)這樣,舉例來說,我會給你一個任務個數是3,他的pair會是(2,1) (3,2) 則你要告訴我說他能不能完成這個執行順序,以這題來說是能,他只要依照1 2 3來執行就可以,不行就回傳false Hi, glad to see you in this interview, this time I want to let you help us to solve some problem that we met, in our daily life, we will have many task, but some tasks are depend on another task, for example, we need to start task A before finishing task B that task A is depend on task B, we can write this relation as (a , b) , then today’s question is if we give you many pairs of this relation, could you give me a order of these task that we can do these task according to this order, that is topological sort I will give you two input, one is the pairs of task, second is number of task, be careful that the number of pairs is less than number of task, for example if I give you task number is 4, then the pairs of task is like (1,2) (3,4) (2,3) would not larger than 4, if these pair can make a reasonable topological sort, then return true, if cannot, return false
     Like  Bookmark
  • 無逸煩-Kris - Homework 2 互評 旗忠一仁-someone 64. Add Binary 可以在每段程式碼前加註解,像27-29行為初始化,可以加註 當下沒有解釋C2D實作 9:08 解釋要怎麼解決頭是0的情況有點不清楚,重複聽才懂,寫法有點不直觀的感覺 9:57 感覺一開始有點沒回答到interviewer的問題,我在聽的時候就一直在等interviewee解釋他的C2D,但沒有很快地給出答案 11:30 這段時間滑鼠一直動跟一直移動輸入的地方,會躁起來
     Like  Bookmark
  • Google - Software Engineer, Silicon 職位希望你有的能力 Compiler Design 在大學時期有修過compiler,有基本認識 image/video/speech algorithms 目前正在修影像處理的課程,算是對image有一點認識,以及實驗室也是做影像相關的
     Like  Bookmark
  • Question 1 中文 27. Remove Element https://leetcode.com/problems/remove-element/ Interviewer 你好,我是xxx的工程師,沒問題的話我們就開始面試,我這邊有一道題目,題目是這樣的,我會給你一個陣列和一個值K,你要做的就是移 除所有陣列裡的K,陣列裡其他的元素的相對位置是可能改變的,要注意的就是你不能改變陣列的大小,並且你要將剩下的元素移到陣列的前面,你可以不用去處理陣列後方的空間,並且你要回傳剩下的元素個數 Interviewee Repeat :
     Like  Bookmark