Sha256: 40ab62e22145466711bee7d079f8a249a347b5bb37a093810813effbc02e0d79

Contents?: true

Size: 1.24 KB

Versions: 28

Compression:

Stored size: 1.24 KB

Contents

using System;

public class CustomSet
{
    public CustomSet(params int[] values)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public CustomSet Insert(int value)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public bool Empty()
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public bool Contains(int value)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public bool Subset(CustomSet right)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public bool Disjoint(CustomSet right)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public CustomSet Intersection(CustomSet right)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public CustomSet Difference(CustomSet right)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public CustomSet Union(CustomSet right)
    {
        throw new NotImplementedException("You need to implement this function.");
    }
}

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
trackler-2.2.1.159 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.158 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.157 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.156 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.155 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.154 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.153 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.152 tracks/csharp/exercises/custom-set/CustomSet.cs