页面顶部 Top
文件:  root - text - article - 2019 - 10 - daily-problem-first-and-last-indices-of-an-element-in-a-sorted-array.txt
标签: 每日算法题, 算法, 数据结构, 面试题, Daily Problem, Data Structures and Algorithms, | 英文 | 主页 | 类别: 计算机科学 | 229 次阅读, 28468 次搜索 | 87 个单词

定阅此目录的博客 | 浏览 | 博客存档
Hi, here's your problem today. This problem was recently asked by AirBNB:

Given a sorted array, A, with possibly duplicated elements, find the indices of the first and last occurrences of a target element, x. Return -1 if the target is not found.

Example:
Input: A = [1,3,3,5,7,8,9,9,9,15], target = 9
Output: [6,8]

Input: A = [100, 150, 150, 153], target = 150
Output: [1,2]

Input: A = [1,2,3,4,5,6,10], target = 9
Output: [-1, -1]
Here is a function signature example:


class Solution:
def getRange(self, arr, target):
# Fill this in.

# Test program
arr = [1, 2, 2, 2, 2, 3, 4, 7, 8, 8]
x = 2
print(Solution().getRange(arr, x))
# [1, 4]
标签: 每日算法题, 算法, 数据结构, 面试题, Daily Problem, Data Structures and Algorithms, | 英文 | 主页 | 类别: 计算机科学 | 229 次阅读, 28468 次搜索 | 87 个单词 定阅此目录的博客

猜您喜欢...

  1. Palindrome Integers
  2. Algorithm Interview: Maximum Path Sum in Binary Tree
  3. Daily Interview Problem: Min Range Needed to Sort
  4. Algorithm Interview: Lowest Common Ancestor of 2 Nodes in Binary Tree
  5. Daily Interview Problem: Contiguous Subarray with Maximum Sum
  6. First and Last Indices of an Element in a Sorted Array
  7. Top K Frequent words
  8. Daily Interview Problem: Running Median
  9. Maximum In A Stack
  10. Windows Scripting

评论 (0)

您的邮件 (不公开域名部分):

您的评论:

悄悄话(发邮件) 颜色 更多笑脸 S x y @

验证码 (点击图片更新):

    当前页暂时没有评论。


最后更新: October 30 2020 14:21:12 | RSS Subscription
牛排怎么做才好吃? | <meta name="机器人" content="不索引, 跟踪" />