Contact: aviboots(AT)netvision.net.il
39,971 questions
51,913 answers
573 users
import Foundation func shuffleString(_ s: String) -> String { var chars = Array(s) chars.shuffle() return String(chars) } let s = "Swift Programming" let shuffled = shuffleString(s) print(shuffled) /* run: aginwo SimrgtmPrf */