前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Array - 299. Bulls and Cows

Array - 299. Bulls and Cows

作者头像
ppxai
发布2020-09-23 17:08:20
3410
发布2020-09-23 17:08:20
举报
文章被收录于专栏:皮皮星球

299、Bulls and Cows

You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. Each time your friend makes a guess, you provide a hint that indicates how many digits in said guess match your secret number exactly in both digit and position (called "bulls") and how many digits match the secret number but locate in the wrong position (called "cows"). Your friend will use successive guesses and hints to eventually derive the secret number.

Write a function to return a hint according to the secret number and friend's guess, use A to indicate the bulls and B to indicate the cows. 

Please note that both secret number and friend's guess may contain duplicate digits.

Example 1:

Input: secret = "1807", guess = "7810"

Output: "1A3B"

Explanation: 1 bull and 3 cows. The bull is 8, the cows are 0, 1 and 7.

思路:

公母牛这题因为是猜数字,所以可以使用一个数组,存储每一个字节对应的数字。 这样就可以用一个大小为10的数组来存储secret字串和guess字串中出现的char,使用一次遍历就可以得到结果。

代码:

go:

代码语言:javascript
复制
func getHint(secret string, guess string) string {

    if secret == "" || len(secret) == 0 {return "0A0B"}
    
    maps := make([]int, 10)
    bull, cow := 0, 0
    
    for i, v := range secret {
        s := int(v - '0')
        g := int(guess[i] - '0')
        if s == g {
            bull++
        } else {
            if maps[g]>0 {cow++}
            if maps[s]<0 {cow++}
            maps[g]--
            maps[s]++
        }
    }
    
    return strconv.Itoa(bull) + "A" + strconv.Itoa(cow) + "B"
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019年06月11日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
对象存储
对象存储(Cloud Object Storage,COS)是由腾讯云推出的无目录层次结构、无数据格式限制,可容纳海量数据且支持 HTTP/HTTPS 协议访问的分布式存储服务。腾讯云 COS 的存储桶空间无容量上限,无需分区管理,适用于 CDN 数据分发、数据万象处理或大数据计算与分析的数据湖等多种场景。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档