猜单词leetcode-leetcode:力扣练习

时间:2024-07-20 15:56:08
【文件属性】:

文件名称:猜单词leetcode-leetcode:力扣练习

文件大小:39KB

文件格式:ZIP

更新时间:2024-07-20 15:56:08

系统开源

猜单词leetcode leetcode 使用 go 解答 package use_go import "strings" //LCP 1. 猜数字 func game(guess []int, answer []int) int { n := 0 for i, val := range guess { if val == answer[i] { n ++ } } return n } //771. 宝石与石头 python return sum(S.count(i) for i in J) func numJewelsInStones(J string, S string) int { n := 0 for _, val := range S { for _, s := range J { if s == val { n++ } } } return n } //1108. IP 地址无效化 // python // class Solution: // def defangIPaddr(self, address: str)


【文件预览】:
leetcode-master
----graph()
--------997.go(1006B)
--------997.py(1KB)
----heap()
--------703.py(1KB)
--------1046.py(1KB)
--------451.py(907B)
--------215.py(670B)
----.DS_Store(6KB)
----stack()
--------232.py(2KB)
--------728.py(947B)
--------1021.go(322B)
--------682.py(2KB)
--------94.py(964B)
--------1021.py(466B)
--------977.py(689B)
--------1021.java(657B)
--------1047.py(2KB)
--------115.py(1KB)
--------225.py(2KB)
--------496.py(2KB)
--------844.py(914B)
----.idea()
--------leetcode.iml(453B)
--------misc.xml(646B)
--------vcs.xml(180B)
--------modules.xml(268B)
--------dictionaries()
--------workspace.xml(6KB)
----Bit_Manipulation()
--------476.py(680B)
--------461.py(597B)
----sort()
--------922.py(1KB)
--------1030.py(1KB)
--------349.py(663B)
--------242.py(633B)
--------976.py(864B)
--------350.py(825B)
--------1122.py(945B)
----greedy_Algorithm()
--------1221.py(1KB)
----tree()
--------226.go(750B)
--------965.py(751B)
--------617.go(1KB)
--------226.py(303B)
--------559.py(799B)
--------617.py(1KB)
--------938.py(1KB)
--------589.py(688B)
--------700.py(2KB)
--------560.py(691B)
----README.md(13KB)

网友评论