Testing Go Test Helpers

If you've spent any time writing Go tests, you've probably encountered the joy of *testing.T. It's the backbone of Go's testing framework  -  powerful, flexible, and ubiquitous. But as your test s...
0 Read More

2560. House Robber IV

2560. House Robber IVDifficulty: MediumTopics: Array, Binary SearchThere are several consecutive houses along a street, each of which has some money inside. There is also a robber, who wants to steal ...
0 Read More

Domain Driven Design

Domain Driven Design
DDD is a software design approach that prioritizes the business domain at the core of development. Coined by Eric Evans in his book Domain-Driven Design: Tackling Complexity in the Heart of Software, ...
0 Read More

Why None?

names = ["Eren", "luffy", "goku"] print(names.sort()) Output: None Why the sort method can't sort the list?...
0 Read More