[Swift]LeetCode248.对称数 III $ Strobogrammatic Number III

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:https://www.cnblogs.com/strengthen/p/10214629.html 
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).

Write a function to count the total strobogrammatic numbers that exist in the range of low <= num <= high.

Example:

Input: low = "50", high = "100"
Output: 3 
Explanation: 69, 88, and 96 are three strobogrammatic numbers.

Note:
Because the range might be a large number, the lowand high numbers are represented as string.


strobogramatic数字是旋转180度时看起来相同的数字(上下颠倒)。

编写一个函数来计算在low<=num<=high范围内存在的总strobogrammatic数。

例子:

输入:low=“50”,high=“100”

输出:3

说明:69、88和96是三个strobogramatic数字。

注:

因为范围可能是一个大数字,所以低数字和高数字表示为字符串。


 1 class Solution {
 2     func strobogrammaticInRange(_ low:String,_ high:String) -> Int {
 3         var res:Int = 0
 4         find(low, high, "",  &res)
 5         find(low, high, "0", &res)
 6         find(low, high, "1", &res)
 7         find(low, high, "8", &res)
 8         return res;
 9     }
10     
11     func find (_ low:String,_ high:String,_ w:String,_ res:inout Int)
12     {
13         if w.count >= low.count && w.count <= high.count
14         {
15             if (w.count == low.count && w < low) || (w.count == high.count && w > high)
16             {
17                 return 
18             }
19             if !(w.count > 1 && w[0] == "0")
20             {
21                 res += 1
22             }
23         }
24         if w.count + 2 > high.count
25         {
26             return
27         }
28         find(low, high, "0" + w + "0", &res)
29         find(low, high, "1" + w + "1", &res)
30         find(low, high, "6" + w + "9", &res)
31         find(low, high, "8" + w + "8", &res)
32         find(low, high, "9" + w + "6", &res)
33     }
34 }
35 
36 extension String {        
37     //subscript函数可以检索数组中的值
38     //直接按照索引方式截取指定索引的字符
39     subscript (_ i: Int) -> Character {
40         //读取字符
41         get {return self[index(startIndex, offsetBy: i)]}
42     }
43 }

 

转载于:https://www.cnblogs.com/strengthen/p/10214629.html

LeetCode的第260题中,题目被称为“只有一个公共元素的组 II”。这是一道关于组操作的据结构和算法题目。给定两个已经排序的整组 nums1 和 nums2,你需要找出它们之间的一个共同的元素,这个元素在每个组中都只出现一次。 该问题的目标是找到这样的一个公共元素,并返回它的值。例如,如果nums1 = [1, 2, 2, 4] 和 nums2 = [2, 2, 8, 10],那么唯一的公共单次出现的元素是2。 为了解决这个问题,你可以采用一种类似于双指针的方法。从两个组的起始位置开始遍历,每次比较当前指针对应的元素。如果元素相等且在各自的组中都是第一次出现(即前一个出现的位置比当前位置大),就将这个元素添加到结果中并继续向后移动指针。如果遇到不同的元素,则移动较小的那个指针的所在组的指针。 Python 或 C++ 等语言中,可以实现一个循环或者递归的解决方案,直到找到共同的单次出现元素或遍历完其中一个组。这里是一个简单的 Python 示例: ```python def singleNumber(nums1, nums2): i, j = 0, 0 count = {} while i < len(nums1) and j < len(nums2): if nums1[i] not in count or nums2[j] not in count: count[nums1[i]] = 1 i += 1 elif nums2[j] not in count: count[nums2[j]] = 1 j += 1 else: del count[nums1[i]] del count[nums2[j]] i += 1 j += 1 # 如果有一个组没遍历完,剩下的最后一个元素就是公共唯一元素 return list(count.keys())[0] if i < len(nums1) else list(count.keys())[-1] ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值