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.180 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.179 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.178 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.177 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.176 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.175 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.174 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.173 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.172 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.171 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.170 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.169 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.167 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.166 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.165 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.164 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.163 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.162 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.161 tracks/csharp/exercises/custom-set/CustomSet.cs
trackler-2.2.1.160 tracks/csharp/exercises/custom-set/CustomSet.cs