cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
what is this statement saying?
what is this statement saying?
Apr 22, 2009 at 3:20pm UTC
hugsnbugs
(32)
Consider the problem of determining whether an arbitrary sequence x1, x2…….xN of N numbers
contains repeated occurrences of some number.
Apr 22, 2009 at 3:24pm UTC
Bazzy
(6281)
You should find a way of finding if a number was repeated in a sequence of numbers
eg:
sequence: 1 2 3 4 5 6 7 8 4 9
look for: 4
result: yes (repeated)
look for: 7
result: no (only once)
Apr 22, 2009 at 3:26pm UTC
hugsnbugs
(32)
k.. wow.. m stupid..
thanx for you help.. :)
Topic archived. No new replies allowed.