We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Ruby - Enumerable - collect
Ruby - Enumerable - collect
Sort by
recency
|
97 Discussions
|
Please Login in order to post a comment
def rot13(secret_messages)
end
def helper(ch) alpb = "abcdefghijklmnopqrstuvwxyz" i = ch.downcase.ord - 'a'.ord return i > 25 || i < 0 ? ch : ch.ord >= 65 && ch.ord <=90 ? alpb[(i + 13)%26].upcase : alpb[(i + 13)%26] end
Hey! It’s very helpful information for Eco Cleanse. Thanks’ you! For sharing this information.