Practical Code Smells - Sample 1
Take a look a this code, share in comments what are your thoughts/notes about it?
struct Bottles {
func song() -> String {
verses(from: 99, downTo: 0)
}
func verses(from high: Int, downTo low: Int) -> String {
(low...high...
shendy.hashnode.dev3 min read