rot13 算法

func rot13(b byte) byte {
    if 'a' <= b && b <= 'z' {
        b = 'a' + ((b - 'a') + 13) % 26
    }
    if 'A' <= b && b <= 'Z' {
        b = 'A' + ((b - 'A') + 13) % 26
    }
    return b
}

 

Rot13 参考资料:http://www.hudong.com/wiki/ROT13

你可能感兴趣的:(算法,语言,Go,红猎人,Rot13)