iT邦幫忙

鐵人檔案

2022 iThome 鐵人賽
回列表
自我挑戰組

寫寫歷年職場經歷過的大小事或近期所學習的知識啟發 系列

聊聊工作(科技業、公家機關)、聊聊知識

鐵人鍊成 | 共 30 篇文章 | 6 人訂閱 訂閱系列文 RSS系列文
DAY 21

SOLID設計原則 – 里氏替換原則

SOLID組成:● 單一職責原則 Single Responsibility Principle,SRP● 開放閉合原則 Open Closed Princip...

2022-09-21 ‧ 由 EricaY 分享
DAY 22

SOLID設計原則 – 介面隔離原則

SOLID組成:● 單一職責原則 Single Responsibility Principle,SRP● 開放閉合原則 Open Closed Princip...

2022-09-22 ‧ 由 EricaY 分享
DAY 23

Search and Sort

談到搜尋不免就會探討到排序,因為Binary Search需要應用在已排序好的資料上 Linear Search public class LinearSe...

2022-09-23 ‧ 由 EricaY 分享
DAY 24

迴文判斷

三種迴文判斷程式碼 利用while loop處理 import java.util.Scanner; public class Palindrome {...

2022-09-24 ‧ 由 EricaY 分享
DAY 25

來個8D吧

8D是什麼?=> Eight Disciplines Problem Solving,團隊導向問題解決方法 適用場景:用在「客戶抱怨回覆」、「反覆出現相同...

2022-09-25 ‧ 由 EricaY 分享
DAY 26

Codewars|Find the missing letter

['a','b','c','d','f'] -> 'e' ['O','Q','R','S'] -> 'P' 找出陣列中跳過的英文字母 想法:已知c...

2022-09-26 ‧ 由 EricaY 分享
DAY 27

遞迴|河內塔

import java.util.Scanner; public class TowersOfHanoi { /** * Main method...

2022-09-27 ‧ 由 EricaY 分享
DAY 28

Call by value|Call by reference

Call by value:將實際參數傳遞給方法,方法內的參數與傳入參數值的記憶體位置不同,如int x 與 number Call by reference:...

2022-09-28 ‧ 由 EricaY 分享
DAY 29

Codewars|Bit Counting

將十進制整數轉成二進制後所有的1加總Example:十進制:1234二進制:10011010010Bit Counting:5 解題想法:使用迴圈當n%2!=0...

2022-09-29 ‧ 由 EricaY 分享
DAY 30

Codewars|Convert string to camel case

將字串轉成駝峰式形式字串Example:"the-stealth-warrior" gets converted to "theS...

2022-09-30 ‧ 由 EricaY 分享