python 删除重复字符_Google面试问题指南:使用Python删除重复出现的字符

python 删除重复字符

by Anthony Sistilli

安东尼·西斯蒂里(Anthony Sistilli)

Google面试问题指南:使用Python删除重复出现的字符 (Google Interview Question Guide: Delete Reoccurring Characters with Python)

Nowadays, Google interviews are all the rage. But sometimes, interviews can get the best of us. Especially if it’s for a position we really want.

如今,Google面试风靡一时。 但是有时候,采访可以使我们受益匪浅。 尤其是在我们真正想要的职位上。

I’ve had the pleasure of interviewing at multiple top companies as a student, and landing a job in Silicon Valley as a Software Engineer.

我很高兴能在学生中接受多家顶级公司的采访,并以软件工程师的身份在硅谷找到一份工作。

My goal is to help you get that dream job you’ve always wanted!

我的目标是帮助获得梦always以求的工作!

We’re going to go over a classic question that could show up on your next Google Interview.

我们将讨论一个经典问题,该问题可能会在您的下一次Google采访中出现。

Warning: if you’re a coding veteran, you probably already know how to solve this question!

警告:如果您是编码方面的资深人士,您可能已经知道如何解决此问题!

If you’re trying to get an Internship or a Full-Time job next year, then you’ll definitely benefit from this article. ???

如果您想在明年获得实习全职工作,那么您一定会从本文中受益。 ???

问题:给定字符串作为输入,删除所有重复出现的字符,然后返回新字符串。 (QUESTION: Given a string as your input, delete any reoccurring character, and return the new string.)

If you would prefer a video to explain the question, I made one here.

如果您希望使用视频来解释这个问题, 我在这里做了一个 。

As we can see from the example above, the output is “abc” because we delete the second ‘a’, ‘b’, and ‘c’.

从上面的示例可以看到,输出为“ abc”,因为我们删除了第二个“ a”,“ b”和“ c”。

First things first, let’s set up our function in Python 2.7.

首先,让我们在Python 2.7中设置函数。

def deleteReoccurringCharacters(string):

To tackle this question, we’re going to use a specific data structure called a HashSet.

为了解决这个问题,我们将使用一种称为HashSet的特定数据结构。

You can think of a set as being similar to an array, with two main exceptions.

您可以认为集合类似于数组,但有两个主要例外。

  1. It’s completely unordered

    完全没有秩序

  2. It can’t contain duplicates

    它不能包含重复项

Because it’s unordered, we’ll also need an empty string to store the characters we’ve added to the set in order. This will be the string we return.

因为它是无序的,所以我们还需要一个空字符串来存储已按顺序添加到集合中的字符。 这将是我们返回的字符串。

Let’s set both of those things up.

让我们同时设置这两件事。

def deleteReoccurringCharacters(string):    seenCharacters = set()    outputString = ''

Now that we’ve set up the data structures we need, let’s talk about our algorithm.

现在我们已经建立了所需的数据结构,下面我们来谈谈我们的算法。

Because of the way a set works in memory, it has a lookup time complexity of 0(1).

由于集合在内存中的工作方式,其查找时间复杂度为0(1)。

This means we can use it to check whether or not we’ve already visited a character!

这意味着我们可以使用它来检查我们是否已经访问过角色!

我们的算法 (Our algorithm)

Loop through all the characters in the initial string and do the following:

循环遍历初始字符串中的所有字符,然后执行以下操作:

Step 1: Check if the character is in our set already
步骤1:检查角色是否已经在我们的集合中
Step 2: If it’s not in the set, add it to the set and append it to the string
步骤2:如果不在集合中,请将其添加到集合中并将其附加到字符串中

Let’s see what that would look like in code ???

让我们看一下代码中的样子吗?

for char in string:    if char not in seenCharacters:        seenCharacters.add(char)        outputString += char

We don’t have to worry about an “else” case, because we don’t do anything with the reoccurring character itself.

我们不必担心“其他”情况,因为我们无需对重复出现的角色本身做任何事情。

Now all that’s left to do is return the outputString.

现在剩下要做的就是返回outputString了。

Here’s what the finished code looks like:

这是完成的代码,如下所示:

def deleteReoccurringCharacters(string):    seenCharacters = set()    outputString = ''    for char in string:        if char not in seenCharacters:            seenCharacters.add(char)            outputString += char    return outputString

And there you have it!

在那里,您拥有了!

Now if this was an interview, your recruiter would ask you about the time and space complexity.

现在,如果这是一次面试,您的招聘人员会问您时间和空间的复杂性。

Let’s do a little analysis.

让我们做一点分析。

时间复杂度 (Time Complexity)

Iterating through the entire input string has a time complexity of O(n), since there are n characters in the string itself.

遍历整个输入字符串的时间复杂度为O(n),因为字符串本身包含n个字符。

For each of those characters, we have to check whether or not we’ve seen the… However, since a HashSet has a lookup time of O(1), our time complexity isn’t impacted.

对于每个这些字符,我们都必须检查是否已看到……。但是,由于HashSet的查找时间为O(1),因此,时间复杂度不会受到影响。

Leaving us with a final time complexity of O(n).

使我们的最终时间复杂度为O(n)。

空间复杂度 (Space Complexity)

Worst case scenario, we get a string with all unique characters. For example, “abcdef”.

最坏的情况是,我们得到一个包含所有唯一字符的字符串。 例如,“ abcdef”。

In that case, we would store all n elements in our string and our set.

在这种情况下,我们将所有n个元素存储在字符串和集合中。

However, we’re also limited to size of the english alphabet.

但是,我们还限于英文字母的大小。

This is a good chance to ask our interviewer what type of characters count as unique in the string (uppercase / lowercase / numbers / symbols).

这是一个很好的机会,可以询问我们的面试官字符串中哪种字符算作唯一字符(大写/小写/数字/符号)。

Assuming that the initial string will contain lowercase letters from the alphabet, since the alphabet is finite, our set and output string can never be bigger than 26 characters.

假设初始字符串将包含字母表中的小写字母,由于字母表是有限的,因此我们的set和输出字符串不得大于26个字符。

Leaving us with a worst case scenario space complexity of O(1).

最糟糕的情况是,我们的空间复杂度为O(1)。

您现在知道了如何解决Google面试问题! (You now know how to solve a Google interview question!)

This question is likely to come up in the early stages of the interview due to it’s straightforwardness… Like the online test, or the first phone call.

这个问题很容易在面试的初期出现,因为它很简单……就像在线考试或第一次打来的电话一样。

If you’re a visual learner like I am, check out this video I made explaining the solution further. I create a new tutorial video everyday revolving around starting your career in software.

如果您像我一样是视觉学习者, 请观看我进一步解释该解决方案的视频。 我每天都会制作一个新的教学视频,围绕着您在软件领域的职业发展展开。

I’ve also posted the finished code on Github here.

我也贴在完成的代码在Github 这里 。

Thanks for watching, and good luck!

感谢收看,祝您好运!

.a #33

.a#33

翻译自: https://www.freecodecamp.org/news/solving-a-google-interview-question-python-2-code-included-eddefcaeffb2/

python 删除重复字符

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/394605.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

cordova

命令行 npm install -g cordova cordova create MyApp cd MyApp cordova platform add android 当然也可以把android换成browser把自己的前端程序放在www文件夹内这里注意如果用android studio打包或运行的话,(即不用cordova),要把…

冒泡排序(Java版)

冒泡排序基本思想: 1.比较相邻的元素,如果第一个比第二个大,就交换它们两个。 2.对每一对相邻元素做同样的工作,从开始的第一对到结尾的最后一对。在这一点,最后的元素应该会是最大的数。 3.针对所有的元素重复以上的步…

计算机科学与技术专业的论文周报,毕业设计(实习)周报

本科毕业设计周报第1 周毕业生周记撰写毕业论文开题报告(初稿),结合毕业设计所选的题目,查阅大量相关资料,主要针对该设计所涉及的背景,研究目的及意义,以及国内外的相关成熟技术进行筛选,提取部分核心内容…

excel导出_SpringBoot实现快速导出Excel

阅读本文约需要6分钟 大家好,我是你们的导师,我每天都会在这里给大家分享一些干货内容(当然了,周末也要允许老师休息一下哈)。上次老师跟大家分享了下MyBatis 几种通用的写法的相关知识,今天跟大家分享SpringBoot实现快速导出Exce…

SignalR Self Host+MVC等多端消息推送服务(4)

由于工作太忙,一直没时间更新博客,之前有很多朋友一直问我什么时候将后续的代码发上来,一直没时间,今天就长话短说,不写文章了,直接上demo,里面将正式项目中用到的一些敏感信息修改了&#xff0…

项目中需要总结的内容

1.铁塔项目的硬件总结 2.传感器项目的硬件总结 3.灯控项目的硬件总结 控制灯闪烁的电路,SIM卡板子复位电路,继电器控制电路转载于:https://www.cnblogs.com/yuesheng/p/6086647.html

计算机应用计算机电算化题库,2014年浙江省会计电算化客观题题库

第一套试题一、单选题1.在会计软件初始设置中,录入期初余额时(C)A.只要求录入一级科目的期初余额 B.只要求录入中间级科目的期初余额C.每级科目均需录入期初余额 D.只要求录入最末级科目的期初余额2.在总账系中,要求能够进行上下级…

使用一些我喜欢的东西开始使用ES6

by Todd Palmer托德帕尔默(Todd Palmer) 使用一些我喜欢的东西开始使用ES6 (Getting started with ES6 using a few of my favorite things) This tutorial walks you through some easy steps to get started learning the newest version of JavaScript: ES6.本教程将引导您…

A 子类继承父类,子类的构造函数会覆盖父类的构造函数

//子类 没有定义 构造 函数时&#xff0c;默认继承父类的构造方法&#xff1a;输出结果为 Class A... // 子类 定义了 构造 函数时&#xff0c;就不会继承父类的构造方法&#xff1a;输出结果是 Class B... <?php class A{ public function __construct(){ echo &qu…

fifo算法_缓存算法FIFO、LFU、LRU

阅读文本大概需要3分钟。0x01&#xff1a;FIFO算法FIFO(First in First out)&#xff0c;先进先出。其实在操作系统的设计理念中很多地方都利用到了先进先出的思想&#xff0c;比如作业调度(先来先服务)&#xff0c;为什么这个原则在很多地方都会用到呢&#xff1f;因为这个原则…

Pile 0009: Vim命令梳理

正常模式&#xff08;按Esc或Ctrl[进入&#xff09; 左下角显示文件名或为空插入模式&#xff08;按i键进入&#xff09; 左下角显示--INSERT--可视模式&#xff08;按v键进入&#xff09; 左下角显示--VISUAL-- i 在当前位置生前插入 I 在当前行首插入 a 在当前位置后插入 A 在…

Introduction of Version Control/Git, SVN

Introduction of Version Control/Git, SVN 什么是版本控制&#xff1f; 你可以把一个版本控制系统&#xff08;缩写VCS&#xff09;理解为一个“数据库”&#xff0c;在需要的时候&#xff0c;它可以帮你完整地保存一个项目的快照。当你需要查看一个之前的快照&#xff08;称之…

怎样设置计算机远程桌面,电脑如何设置远程连接,手把手教你如何远程

说起远程桌面很多用户都认为是从WIN2000 SERVER才开始引入的&#xff0c;实际上我们可以在WIN98甚至是DOS中看到他的身影。远程桌面采用的是一种类似TELNET的技术&#xff0c;他是从TELNET协议发展而来的。那么如何设置自动开机&#xff0c;下面&#xff0c;我们就来看看如何设…

查看这些有用的ECMAScript 2015(ES6)提示和技巧

by rajaraodv通过rajaraodv 查看这些有用的ECMAScript 2015(ES6)提示和技巧 (Check out these useful ECMAScript 2015 (ES6) tips and tricks) EcmaScript 2015 (aka ES6) has been around for couple of years now, and various new features can be used in clever ways. I…

inputstream转fileinputstream对象_FileInputStream类:文件字节输入流

API ----IO ----字节输入输出流练习 java.lang.Object 继承者 java.io.InputStream 继承者 java.io.FileInputStreampublic FileInputStream类速查速记&#xff1a;直接包装File用于从记事本中读数据 in是针对java来说的&#xff0c;从记事本读入到java* 构造方法&#xff1a;…

IBM将推NVMe存储解决方案

先前&#xff0c;IBM曾对外宣称将开发新的NVMe解决方案&#xff0c;并推动行业参与者进一步探索新协议&#xff0c;以支持更快的数据传输。周日&#xff0c;IBM表示新的语言协议——NVMe&#xff08;非易失性存储器&#xff09;正在逐步取代SAS和SATA等旧有的固态硬盘存储标准。…

html5中3个盒子怎样设置,Web前端开发任务驱动式教程(HTML5+CSS3+JavaScript)任务10 盒子模型及应用.pptx...

第五单元 盒子模型任务10 盒子模型及应用学习目标盒子模型的概念掌握边框的设置内边距的设置外边距的设置学习目标了解:利用盒子模型布局网页的优势任务目标实战演练——制作古诗文欣赏网页强化训练——制作散文赏析网页知识准备1. 盒子模型的概念知识准备1. 盒子模型的概念CSS…

SQL手工注入入门级笔记(更新中)

一、字符型注入 针对如下php代码进行注入&#xff1a; $sql"select user_name from users where name$_GET[name]"; 正常访问URL:http://url/xxx.php?nameadmin 此时实际数据库语句: select user_name from users where nameadmin 利用以上结果可想到SQL注入构造语句…

materialize_使用Materialize快速介绍材料设计

materialize什么是材料设计&#xff1f; (What is Material Design?) Material Design is a design language created by Google. According to material.io, Material Design aims to combine:Material Design是Google创建的一种设计语言。 根据material.io &#xff0c;Mate…

python处理完数据导入数据库_python 将execl测试数据导入数据库操作

import xlrd import pymysql # 打开execl表 book xlrd.open_workbook(XXXX测试用例.xlsx) sheet book.sheet_by_name(Sheet1) # print(sheet.nrows) # 创建mysql连接 conn pymysql.connect( host127.0.0.1, userroot, password123456, dbdemo1, port3306, charsetutf8 ) # 获…