Initial commit
This commit is contained in:
commit
4dda0d330c
11 changed files with 4624 additions and 0 deletions
21
DigitSequence/Digits.cs
Normal file
21
DigitSequence/Digits.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
using System.Collections;
|
||||
|
||||
namespace DigitSequence;
|
||||
|
||||
public sealed class Digits(int number) : IEnumerable<int>, IComparable<Digits>
|
||||
{
|
||||
// TODO
|
||||
//private readonly int _number;
|
||||
|
||||
public int CompareTo(Digits? other)
|
||||
{
|
||||
// TODO
|
||||
return -1;
|
||||
}
|
||||
|
||||
public IEnumerator<int> GetEnumerator() => null!; // TODO
|
||||
|
||||
IEnumerator IEnumerable.GetEnumerator() => null!; // TODO
|
||||
|
||||
public override string ToString() => null!; // TODO
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue