Open in app
Home
Notifications
Lists
Stories

Write
I caught a code
I caught a code

Home
About

Published in I Caught a Code

·Apr 20

[LeetCode] Problem Solving Pattern_Frequency Counter

I am currently studying the Udemy course JavaScript Algorithms and Data Structures Masterclass and want to jot down some notes. This post is dedicated to the problem solving pattern — Frequency Counters. Scenarios In some problem sets we can see questions like “ how many times has a, b, c occurred,”…

Leetcode

3 min read

[LeetCode] Problem Solving Pattern_Frequency Counter
[LeetCode] Problem Solving Pattern_Frequency Counter

Published in I Caught a Code

·Feb 28

前後端分工觀察小記-1

工作後的小小心得 學生時期做過前後端協作的專案,但因缺乏討論,後端寫 API 時前端還在切元件,因此等到要串接時,只能對後端寫的回傳格式照單全收,又或者修修改改,要後端配合前端渲染方便所需的格式而組出奇怪的資料結構,並沒有討論出一個格式或職責分工的標準。後端工程師工作至今快半年,透過實際解決客戶需求、和前端工程師合作開發,以及接受技術主管的任務分派, …

Web Development

6 min read

前後端分工觀察小記-1
前後端分工觀察小記-1

Published in I Caught a Code

·Dec 1, 2021

Hexo Blog 輕鬆架

看完馬上會,少走冤枉路 >:) 先附上 我的 Hexo,之後裡面的內容會跟 Medium 做出區別~ 開始工作後經歷了一段手忙腳亂的適應期,最近總算是能夠重啟自學習慣,但對於一些在工作上學到的、片段式的筆記、或刷題紀錄,很難更新在 Medium 上,因為它給我的感覺比較正式,不寫完整點、不潤稿的話,沒辦法隨意發佈。 所以我開始搜尋替代方案:希望能夠快 …

學習筆記

16 min read

Hexo Blog 輕鬆架
Hexo Blog 輕鬆架

Published in I Caught a Code

·Sep 3, 2021

[心得] 2021 後端工程師求職紀錄

精選面試心得可以直接跳到後面看 這張首圖是有意義的。它反映著從下定決心學習程式到轉職的過程,一路上的心境。縱使副駕有人可指點、來往的道路有車可跟、路上也有路牌指示,但握著方向盤的人始終是我。 從學習程式到現在已經過了十個月。中間五個月報名網路課程自學,後面三個月密集運作讀書會和各種 Udemy 大補帖,而最近則剛結束為期約四週的求職,想趁還記憶猶新時 …

Self Taught Developer

12 min read

[心得] 2021 後端工程師求職紀錄
[心得] 2021 後端工程師求職紀錄

Published in I Caught a Code

·Aug 8, 2021

[專案紀錄] 迷你電商 X 串接第三方金流

沒串過更要串 最近和 Ivy 一起做 side project,很喜歡買衣服的我們決定做一個迷你的服飾電商網站XD 也剛好把之前一直很想練習的購物車模型實際做出來。 先附上 GitHub~測試信用卡與測試帳號請移駕至 README ,這篇以介紹專案為主。 GitHub - sherryliao21/ecommerce-site Blanche is an ecommerce website where users get to shop latest trends in women's clothing. This project serves both as…github.com Live Demo on Heroku 測試帳號: root@example.com(管理員後台) 測 …

Projects

9 min read

[專案紀錄] 迷你電商 X 串接第三方金流
[專案紀錄] 迷你電商 X 串接第三方金流

Published in I Caught a Code

·Jul 26, 2021

[專案紀錄] 記帳 app 重構!功能畫面小升級

勇敢重構,打造新功能

自學程式

10 min read

[專案紀錄] 記帳 app 重構!功能畫面小升級
[專案紀錄] 記帳 app 重構!功能畫面小升級

Published in I Caught a Code

·Jul 11, 2021

[專案紀錄] 記帳 web app 升級!實作登入功能 — (二) 登入/登出篇

利用 Passport.js 打造登入驗證機制 沒想到這系列的上一篇已經是兩個月前的事囉 🙃 趁這次回來重構優化的機會撿起來繼續講 XD Live Demo on Heroku (先註冊一個帳號就能使用囉) sherryliao21/expense-tracker Contribute to sherryliao21/expense-tracker development by creating an account on GitHub.github.com 前一篇說明了註冊功能背後的流程,這篇來到登入/登出的部分,在這個專案裡我使用了 express-session 與 passport.js …

自學程式

8 min read

[專案紀錄] 記帳 web app 升級!實作登入功能 — (二) 登入/登出篇
[專案紀錄] 記帳 web app 升級!實作登入功能 — (二) 登入/登出篇

Published in I Caught a Code

·Jun 24, 2021

[Leetcode] #206_Reverse Linked List (Iterative solution)

My notes & solution on Leetcode problems Reverse Linked List - LeetCode Given the head of a singly linked list, reverse the list, and return the reversed list. Example 1: Input: head =…leetcode.com #206_Reverse Linked List belongs to the EASY category. I started learning about Data Structures this month and have never implemented an actual linked list on a problem before. So this one is quite challenging and fun to do. …

Leetcode

4 min read

[Leetcode] #206_Reverse Linked List (Iterative solution)
[Leetcode] #206_Reverse Linked List (Iterative solution)

Published in I Caught a Code

·Jun 22, 2021

[Leetcode] #561_Array Partition I

解題記錄 Array Partition I - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared…leetcode.com 這題屬於 Easy 等級,以下題目敘述: Given an integer array nums of 2n integers, group these integers into n pairs (a1, b1), (a2, b2), ..., (an, bn) such that the sum of min(ai, bi) for a …

Leetcode

4 min read

[Leetcode] #561_Array Partition I
[Leetcode] #561_Array Partition I

Published in I Caught a Code

·Jun 20, 2021

[Leetcode] #704_Binary Search

My notes & solution on Leetcode problems 最近需要練英文,試著用英文寫寫看,希望不要整死自己 🙃 Binary Search - LeetCode Given an array of integers nums which is sorted in ascending order, and an integer target, write a function to search…leetcode.com #704_Binary Search belongs to the EASY category in Leetcode. First take a look at the description: Given an array of integers nums which is sorted in ascending order, and an integer target, write a function to search target in nums. If…

Leetcode

3 min read

[Leetcode] #704_Binary Search
[Leetcode] #704_Binary Search
I caught a code

I caught a code

The adventure of a web dev newbie 👀

Following
  • Yair Mishnayot

    Yair Mishnayot

  • Z-xuan Hong

    Z-xuan Hong

  • Chandrika Deb

    Chandrika Deb

  • 神Q超人

    神Q超人

  • Todd H. Gardner

    Todd H. Gardner

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Knowable