由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问下careercup上的这一题
相关主题
yelp一题,攒rpfinds all repeated substrings in the string --- YAHOO interview question
报个微软的Offer问道Google题目
C++ 程序求助请教一道题目
请问驿道面试题讨论一道G的题find longest substring which contains just two unique characters.
Find shortest substring that is only occurring once. in Given String(Medallia面试题)一道Google面试题,怎么做?(题目描述有误,已修改)
Palindrome Partitioning II 的DP做法?这个怎么做?
Zenefits面经(已挂)careercup 150一题。 9.2
[合集] 微软面试的一道题careercup上一题求解..合并array
相关话题的讨论汇总
话题: substring话题: colorful话题: 相乘话题: careercup话题: string
进入JobHunting版参与讨论
1 (共1页)
S**********e
发帖数: 503
1
http://www.careercup.com/question?id=14552712
“Given a number , say 263 , is said to be colorful if the product of all
its substrings is unique . 2 , 6 , 3 , 6*3 , 2*6 .But 2*3 is NOT a valid
product . We have to consider substring only. Tell whether the number is
colorful or not”
我看了半天没看懂题目意思。是不是说求一个string的所有substring,然后两两相乘
,如果所有结果都不一样,那说明这个string是colorful的?
p*****2
发帖数: 21240
2

好像是这个意思。

【在 S**********e 的大作中提到】
: http://www.careercup.com/question?id=14552712
: “Given a number , say 263 , is said to be colorful if the product of all
: its substrings is unique . 2 , 6 , 3 , 6*3 , 2*6 .But 2*3 is NOT a valid
: product . We have to consider substring only. Tell whether the number is
: colorful or not”
: 我看了半天没看懂题目意思。是不是说求一个string的所有substring,然后两两相乘
: ,如果所有结果都不一样,那说明这个string是colorful的?

g****y
发帖数: 240
3
是的,就是所有的substring,然后把substring中的digit相乘,看结果是不是unique。
263: 3, 6 * 3, 6, 2 * 6 * 3, 2 * 6, 2

【在 S**********e 的大作中提到】
: http://www.careercup.com/question?id=14552712
: “Given a number , say 263 , is said to be colorful if the product of all
: its substrings is unique . 2 , 6 , 3 , 6*3 , 2*6 .But 2*3 is NOT a valid
: product . We have to consider substring only. Tell whether the number is
: colorful or not”
: 我看了半天没看懂题目意思。是不是说求一个string的所有substring,然后两两相乘
: ,如果所有结果都不一样,那说明这个string是colorful的?

S**********e
发帖数: 503
4
是不是暴力法列出所有情况就行了,有啥捷径不?
像26、63这些也要考虑吧

unique。

【在 g****y 的大作中提到】
: 是的,就是所有的substring,然后把substring中的digit相乘,看结果是不是unique。
: 263: 3, 6 * 3, 6, 2 * 6 * 3, 2 * 6, 2

g****y
发帖数: 240
5
估计没啥捷径吧。感觉考点是怎么explore all substrings。 是的,26,63要考虑。

【在 S**********e 的大作中提到】
: 是不是暴力法列出所有情况就行了,有啥捷径不?
: 像26、63这些也要考虑吧
:
: unique。

1 (共1页)
进入JobHunting版参与讨论
相关主题
careercup上一题求解..合并arrayFind shortest substring that is only occurring once. in Given String(Medallia面试题)
为啥careerCup 4里面graph就一题Palindrome Partitioning II 的DP做法?
看不懂careercup上一题的答案Zenefits面经(已挂)
估计死在这一题上了。[合集] 微软面试的一道题
yelp一题,攒rpfinds all repeated substrings in the string --- YAHOO interview question
报个微软的Offer问道Google题目
C++ 程序求助请教一道题目
请问驿道面试题讨论一道G的题find longest substring which contains just two unique characters.
相关话题的讨论汇总
话题: substring话题: colorful话题: 相乘话题: careercup话题: string