When defining enum cases in Swift, it is unnecessary and redundant to explicitly specify the enum values when they are same as the enum case name.
Redundantly specifying the enum values can lead to code duplication and increase the likelihood of mistakes.
enum Numbers: String {
case one = "one"
case two = "two"
}
enum Numbers: String {
case one
case two
}