My solution in Swift with an extension of String :
String
extension String { var camelCase: String { self.capitalized.filter { !$0.isWhitespace } } }
We're a place where coders share, stay up-to-date and grow their careers.
We strive for transparency and don't collect excess data.
re: Daily Challenge #95 - CamelCase Method VIEW POST
FULL DISCUSSIONMy solution in Swift with an extension of
String
: