首页
题库
面试
求职
学习
竞赛
More+
所有博客
搜索面经/职位/试题/公司
搜索
我要招人
去企业版
登录 / 注册
首页
>
试题广场
>
去除重复字符
[编程题]去除重复字符
热度指数:274
时间限制:C/C++ 1秒,其他语言2秒
空间限制:C/C++ 256M,其他语言512M
算法知识视频讲解
去除字符串中的重复字符,对于出现超过2次(包含2次)的字符,只保留第一个。
例:输入abcbdde,输出abcde。
示例1
输入
"abcbdde"
输出
"abcde"
备注:
不使用集合类、字符串contains等功能。
马上挑战
算法知识视频讲解
提交运行
算法知识视频讲解
添加笔记
求解答(6)
邀请回答
收藏(7)
分享
纠错
提交结果有问题?
5个回答
0篇题解
开通博客
暂无题解
问题信息
阅文集团
2021
Java工程师
来自:
2021届阅文Java...
上传者:
小小
难度:
5条回答
7收藏
2280浏览
热门推荐
通过挑战的用户
牛客67246...
2022-11-02 16:51:41
宋津京
2022-11-01 16:47:17
牛客86979...
2022-11-01 16:41:18
神猫TOM
2022-11-01 14:50:21
林邵晨
2022-11-01 11:34:34
相关试题
有三个企业的年利润额分别是5000...
数据分析师
途虎
2021
评论
(10)
来自
途虎养车2021秋招数据...
下列哪两个变量之间的相关程度高
数据分析师
途虎
2021
评论
(4)
来自
途虎养车2021秋招数据...
五月份的商品销售额为60万元,该月...
数据分析师
途虎
2021
评论
(2)
来自
途虎养车2021秋招数据...
旋转数组
Java工程师
阅文集团
2021
评论
(2)
来自
2021届阅文Java方...
判断是否是素数
Java工程师
阅文集团
2021
评论
(9)
来自
2021届阅文Java方...
去除重复字符
扫描二维码,关注牛客网
意见反馈
下载牛客APP,随时随地刷题
import java.util.*; public class Solution { /** * * @param str string字符串 * @return string字符串 */ public String removeDuplicatedChars (String str) { // write code here } }
class Solution { public: /** * * @param str string字符串 * @return string字符串 */ string removeDuplicatedChars(string str) { // write code here } };
# # # @param str string字符串 # @return string字符串 # class Solution: def removeDuplicatedChars(self , str ): # write code here
/** * * @param str string字符串 * @return string字符串 */ function removeDuplicatedChars( str ) { // write code here } module.exports = { removeDuplicatedChars : removeDuplicatedChars };
# # # @param str string字符串 # @return string字符串 # class Solution: def removeDuplicatedChars(self , str ): # write code here
package main /** * * @param str string字符串 * @return string字符串 */ func removeDuplicatedChars( str string ) string { // write code here }
/** * * @param str string字符串 * @return string字符串 */ char* removeDuplicatedChars(char* str ) { // write code here }
"abcbdde"
"abcde"