Python || Q14. Program to remove duplicate characters from the given input String

preview_player
Показать описание
java python
python
python by durgasoft
python videos by durgasoft
Python Online Training
Learn Python
Python Tutorial
python programming Tutorial
python Programming Language Tutorial
python examples
python Advanced Tutorial
python Tutorial for Beginners with examples
python Guide
python 3.0 Tutorial
python crash course
Python Tutorial for Beginners
Python Tutorial for Absolute Beginners
Python Tutorials by durgasoft
Python Programming videos by durgasir
=========================================
You an see more Java videos following link:

Java tutorial by durga sir

Java 9 by durga sir

Java 1.8 Version New Features by Durga sir

Adv Java JDBC Tutorial by Durga sir

OCJA 1.8 Java SE 8 Programmer - I (1Z0 - 808 ) By Durga sir

Core Java by NagoorBabu sir

Advenced Java by Nagoorbabu sir

CoreJava by Ratan

Advanced Java jdbc by Ratan

Advjava tutorials - JSP by Ratan

Adv java servlets tutorial by ratan

Servlet and JSP Tutorial by anji reddy

Advanced Java Jdbc by Anjireddy

Hibernate byAnjireddy

Struts by Anjireddy

Spring by Mr.AnjiReddy

ADV JAVA by Naveen

Spring by Mr.Naveen

Hibernate by Mr. Naveen

Struts by Mr.Naveen
Рекомендации по теме
Комментарии
Автор

Thank you very much for this video . The best video I have seen on the explanation of this concept 😊😇

PriyankaThakarMehta
Автор

Nice, excellent explanation sir I got a clear information about duplicate in string ❤️❤👍

ANIL_
Автор

Great explanation Sir. I am your fan from Karnataka

sharathgujjar
Автор

Nice sometime i get the best solution here thank you

yashutoons
Автор

Thanks u very much one of my interview questions in 1round

dhilipmaharish
Автор

Thanks a lot! Your explanation is the best solution which i was looking in internet!

jagafaster
Автор

Very nice explanation. Thank you so very much.

rohitpandey
Автор

thank you very much sir for this video

saddamahmad
Автор

You can barely understand what he's saying, but them indians are such nice people I just can't be angry at that.

NobleSteed
Автор

i love u thank u so much for ur help <3 amazing video!!

jeeipy
Автор

*Frnds plz share durga sir videos though the social media apps, plz promote his channel and content, he has a tons of knowledge and he is providing freely, so plz share his videos& watch ads completely, make a comment on videos to show how u understand the topic*

kvnagendra
Автор

Sir what is the time and space complexities?

prithvini
Автор

How we find duplicate character in a string

shivanikushwaha
Автор

Sir the in and not in is not supposed to be used when giving python placement papers.
They specificly told to just write the algorithm

Can u please explain this program in very detailed way,
I request you to do that!

def removeDuplicates(s, n):
ans = ""
for i in range (0, n):
k=0
for j in range (0, i):
if(s[i]==s[j]):
k=1
break
if(k==0):
ans=ans+s[i]
print(ans)

s = "aaabaababbccbccd"
n = len(s)
removeDuplicates(s, n)

rajbagi