Skip to content

Instantly share code, notes, and snippets.

@moomdate
Created February 10, 2025 02:58
Show Gist options
  • Save moomdate/91075c2f3113117fbaf736cf668bcc4a to your computer and use it in GitHub Desktop.
Save moomdate/91075c2f3113117fbaf736cf668bcc4a to your computer and use it in GitHub Desktop.
/*
คุณเข้ามารับช่วงต่อโครงการที่มีโค้ดดังนี้ และพบว่ามันไม่มี Unit Test หรือ Documentation
- คุณจะเพิ่ม Code Ownership ให้กับทีมอย่างไร?
- คุณจะเริ่มต้นจัดการกับปัญหานี้อย่างไร?
- ถ้าโค้ดนี้มีบั๊กที่กระทบกับธุรกิจมาก คุณจะมีแนวทางในการแก้ไขที่เหมาะสมอย่างไร?
*/
public class TaxCalculator {
public double calculateTax(double income) {
if (income < 20000) {
return income * 0.1;
} else if (income < 50000) {
return income * 0.2;
} else {
return income * 0.3;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment