1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 01:36:57 +02:00
LeetCode/swift/reverse-string.swift

9 lines
197 B
Swift
Raw Normal View History

class Solution {
func reverseString(_ s: inout [Character]) {
for i in 0..<(s.count / 2) {
let j = s.count - i - 1
(s[i], s[j]) = (s[j], s[i])
}
}
}