iT邦幫忙

鐵人檔案

2025 iThome 鐵人賽
回列表
Software Development

轉職仔之Data Science and ai master後的持續精進技術之路 系列

Blind 75 and Cracking the Coding Interview: 189 Programming Questions and Solutions (Cracking the Interview & Career) 持續精進與輸出分享:)

參賽天數 10 天 | 共 10 篇文章 | 3 人訂閱 訂閱系列文 RSS系列文 團隊第一屆技術創作市集
DAY 1

開賽日碰巧是onboard day:)

大家好:) 原本預計是要複習之前的內容,但又覺得應該向前邁進,雖然很擔心但還是試看看><。主要方向為後續prepare語言之前只有用過python...

DAY 2

Sliding Window 6->7 &教育訓練

class Solution{ // 438 O(N) O(1) public: vector<int> findAnagrams(s...

DAY 3

Sliding Window 7->8 &到部門囉:)

class Solution {//904 O(N) O(1) 因為只有兩種,還不用雜湊表 public: int totalFruit(vector...

DAY 4

Sliding Window 8->9 & 需要網頁與ppt好手:O

class Solution { public: int longestOnes(vector<int>& a, int k) {...

DAY 5

Sliding Window 9->10 & 還有好聲音可以聽真是不可思議:O

class Solution {//1493 O(N) O(1) public: int longestSubarray(vector<int&...

DAY 6

Binary Search 2->3 & The Exit 8之餘第一個周末gogo 不容易耶XD

class Solution{//34 O(LogN) O(1) public: vector<int> searchRange(vec...

DAY 7

Binary Search 3->4 & 補眠日QQ

class Solution{ public: int search(vector<int>& a,int t){//主函式;...

DAY 8

Binary Search 4->5 & 平日颱風假上班有兩倍,去嗎

範例一:[3,4,5,1,2]l=0,r=4 → m=2,a[m]=5,a[r]=2 ⇒ a[m]>a[r] → l=3l=3,r=4 → m=3,a[...

DAY 9

Binary Search 5->6 手機發文有難度 & 明天來準備周四簡報囉

class Solution{//162.O(log N) O(1) public: int findPeakElement(vector<in...

DAY 10

Binary Search 6->7 & 雞排好厚:)

class Solution{//875 O(Nlogm) O(1) public: int minEatingSpeed(vector<int...