Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# Intermediate C# Polymorphism Virtual Methods

Yusuf Lawal
Yusuf Lawal
5,366 Points

What exactly is the question here? Th question is unclear. Maybe is just a because of the lack of punctuation.

Can anyone explain what the question is?

SequenceDetector.cs
namespace Treehouse.CodeChallenges
{
    class SequenceDetector
    {
        public virtual bool Scan(int[] sequence)
        {
            return true;
        }
    }
}
RepeatDetector.cs

1 Answer

Hey ur question is regarding to task 3? u need to subclass the reapeatdetector class, after that u need to use a for loop in order to check if the number ur itearing on is the same as the number u iterated before that. like so: sequence[i] == sequence[i-1] that is how u check if the number u iterating is the same number as the number before.

Yusuf Lawal
Yusuf Lawal
5,366 Points

Thank you. I have solved this challenge. Many thanks!