摘要:
1. 题意: 给出两条integer string 分别为 secret 和 guess。让判断答题者分别猜对和猜错了几个数字。 猜对:定义为bulls(A),必须一样且在secret和guess里分别对应的index一样。 猜错:cows(B), 必须一样,但在secret和guess里分别对应的 阅读全文
2019年7月26日 #
摘要:
1. 题意理解: 给出两条string,让判断它们是否是同构(isomorphic). Isomorphic: two strings are isomorphic if the characters in string s can be replaced to get string t. 2. 解 阅读全文