We're a community of 1077K IT Pros here for help, advice, solutions, professional growth and fun. Join us!
1,076,278 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Start New Discussion Reply to this Discussion

remove duplicates in a sorted array integer

hi to everyone, im having trouble with python programming... i have these 3 problems....

1. remove a duplicates in a sorted integer
2. a python program that will detect if a number is divisible by 3

if you have solutions for my problems, can you help me pls...

5
Contributors
6
Replies
18 Hours
Discussion Span
2 Years Ago
Last Updated
7
Views
Question
Answered
acejhon
Newbie Poster
3 posts since Aug 2010
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0

Some code to see what you have done so far so we can guide you?

Cheers and Happy coding.

Beat_Slayer
Posting Pro in Training
405 posts since Jun 2010
Reputation Points: 30
Solved Threads: 105
Skill Endorsements: 1

Do we have to guess what problem 3 is?

vegaseat
DaniWeb's Hypocrite
Moderator
6,476 posts since Oct 2004
Reputation Points: 1,447
Solved Threads: 1,611
Skill Endorsements: 36

a sorted integer. Hmm. interesting.

Please show some effort.

ultimatebuster
Posting Whiz in Training
250 posts since Mar 2010
Reputation Points: 24
Solved Threads: 69
Skill Endorsements: 0
from random import randint
thenumberasstring = str(randint(1<<32-1,1<<33-1))
print thenumberasstring

norepeats = ''
for n1,n2 in zip(thenumberasstring,thenumberasstring[1:]+' '):
    if n1 != n2:
        norepeats += n1
print norepeats

And when you ask better and show some coding effort we can write real code.:twisted:

pyTony
pyMod
Moderator
6,309 posts since Apr 2010
Reputation Points: 879
Solved Threads: 986
Skill Endorsements: 26

hi to everyone, im having trouble with python programming... i have these 3 problems....

  1. a python program that will remove a duplicates in a sorted array integer
  2. a python program that will detect if a number is divisible by 3 without using a modulus
  3. a python program that will convert decimal to hexa , octa and binary

sorry guys, im new to this language.. im having a problem on how to start with this
but im willing to learn.. sorry

if you have solutions for my problems, can you help me pls...

acejhon
Newbie Poster
3 posts since Aug 2010
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0

hi to everyone, im having trouble with python programming... i have these 3 problems....

  1. a python program that will remove a duplicates in a sorted array integer
  2. a python program that will detect if a number is divisible by 3 without using a modulus
  3. a python program that will convert decimal to hexa , octa and binary

sorry guys, im new to this language.. im having a problem on how to start with this
but im willing to learn.. sorry

if you have solutions for my problems, can you help me pls...

Study for example:
http://www.sthurlow.com/python/lesson04/

http://www.google.fi/url?sa=t&source=web&cd=1&ved=0CBgQFjAA&url=http%3A%2F%2Fdocs.python.org%2Ftutorial%2F&ei=mct0TKu3EZDuOePBiaUG&usg=AFQjCNGHgDIQyUXe76XiQvHhM6kr8-qTAA&sig2=RsjaA0Oj0pvSZH6XMqLIjQ

pyTony
pyMod
Moderator
6,309 posts since Apr 2010
Reputation Points: 879
Solved Threads: 986
Skill Endorsements: 26
Question Answered as of 2 Years Ago by pyTony, vegaseat, ultimatebuster and 1 other

This question has already been solved: Start a new discussion instead

Post: Markdown Syntax: Formatting Help
 
You
View similar articles that have also been tagged:
 
© 2013 DaniWeb® LLC
Page rendered in 0.0728 seconds using 2.68MB