加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

[LeetCode] Ambiguous Coordinates 模糊的坐标

发布时间:2020-12-14 03:47:38 所属栏目:大数据 来源:网络整理
导读:? We had some 2-dimensional coordinates,like? "(1,3)" ?or? "(2,0.5)" .? Then,we removed?all commas,decimal points,and spaces,and ended up with the string? S .? Return a list of strings representing?all possibilities for what our original c

?

We had some 2-dimensional coordinates,like?"(1,3)"?or?"(2,0.5)".? Then,we removed?all commas,decimal points,and spaces,and ended up with the string?S.? Return a list of strings representing?all possibilities for what our original coordinates could have been.

Our original representation never had extraneous zeroes,so we never started with numbers like "00","0.0","0.00","1.0","001","00.01",or any other number that can be represented with?less digits.? Also,a decimal point within a number never occurs without at least one digit occuring before it,so we never started with numbers like ".1".

The final answer list can be returned in any order.? Also note that all coordinates in the final answer?have exactly one space between them (occurring after the comma.)

Example 1:
Input: "(123)"
Output: ["(1,23)","(12,3)","(1.2,"(1,2.3)"]
Example 2:
Input: "(00011)"
Output: ?["(0.001,1)","(0,0.011)"]
Explanation: 
0.0,00,0001 or 00.01 are not allowed.
Example 3:
Input: "(0123)"
Output: ["(0,123)",12.3)",1.23)","(0.1,2.3)","(0.12,3)"]
Example 4:
Input: "(100)"
Output: [(10,0)]
Explanation: 
1.0 is not allowed.

?

Note:

  • 4 <= S.length <= 12.
  • S[0]?= "(",?S[S.length - 1]?= ")",and the other elements in?S?are digits.

?

s

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读