题解 | 字符串加密

package main

import (
	"fmt"
)

func main() {
	var input0 string
	fmt.Scan(&input0)

	var input1 string
	fmt.Scan(&input1)

	repeatedMap := map[byte]bool{}
	unrepeatedStr := []byte{}
	for _, b := range []byte(input0) {
		if _, ok := repeatedMap[b]; ok {
			continue
		}

		repeatedMap[b] = true
		unrepeatedStr = append(unrepeatedStr, b)
	}

	for i := 'a'; i <= 'z' && len(unrepeatedStr) <= 26; i++ {
		bi := byte(i)
		if _, ok := repeatedMap[byte(bi)]; !ok {
			unrepeatedStr = append(unrepeatedStr, bi)
		}
	}

	encryptStr := []byte{}
	for _, rawB := range []byte(input1) {
		targetIdx := rawB - 'a'
		encryptStr = append(encryptStr, unrepeatedStr[targetIdx])
	}

	fmt.Println(string(encryptStr))
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
2024-12-26 10:53
科大讯飞 C++ 19*14 硕士211
点赞 评论 收藏
分享
2024-12-06 22:32
苏州科技大学 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务