由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 24点问题扩展
相关主题
今天做题发现了一个很不明显的bug发一下最近的几个面试面经,为接下来的onsite攒RP
一道面试题和解法(求指点).[discussion] how to approve that the given 9*9 is a sudoku
leetcode里, backtracking的time complexity怎么算,比如permutations这题目输出字串permutation的time complexity是啥?
出道题。perfectPermutation谁能猜猜,这是个什么 algorithm?
两个Amazon面试题哪里看leetcode上题的难度?
贡献一道面试题问一下permutation的time complexity问题
菜鸟问个two sum的变型题Amazon第一轮面试
leetcode Different Ways to Add Parentheses 怎么做?一家游戏公司的新鲜面经
相关话题的讨论汇总
话题: integers话题: array话题: return话题: number
进入JobHunting版参与讨论
1 (共1页)
s*******e
发帖数: 1630
1
今天电面刚被问的一道题:
Given a target number x and an array of unique integers, return all possible
formulas that get x using any number of integers in the array and +,-,*,/
(No parenthesis allowed), return null if not exist
当时第一反应是permutation,但做起来不太容易。大家有什么思路?Complexity如何
a***n
发帖数: 538
2
rpn permutation吧。
r**h
发帖数: 1288
3
直观的想法是,四个数permutation,三个运算符枚举4^3,然后逐个尝试
不过复杂度很高。 没有重复数的情况下是 4! * 4^3 次尝试
i******s
发帖数: 301
4
4! * 4^3 = 1536 推出复杂度很高。笑了

【在 r**h 的大作中提到】
: 直观的想法是,四个数permutation,三个运算符枚举4^3,然后逐个尝试
: 不过复杂度很高。 没有重复数的情况下是 4! * 4^3 次尝试

1 (共1页)
进入JobHunting版参与讨论
相关主题
一家游戏公司的新鲜面经两个Amazon面试题
问个Amazon面试题贡献一道面试题
一道题:Vertical Sticks菜鸟问个two sum的变型题
请教150上面binary的next permutationleetcode Different Ways to Add Parentheses 怎么做?
今天做题发现了一个很不明显的bug发一下最近的几个面试面经,为接下来的onsite攒RP
一道面试题和解法(求指点).[discussion] how to approve that the given 9*9 is a sudoku
leetcode里, backtracking的time complexity怎么算,比如permutations这题目输出字串permutation的time complexity是啥?
出道题。perfectPermutation谁能猜猜,这是个什么 algorithm?
相关话题的讨论汇总
话题: integers话题: array话题: return话题: number