Sha256: d7e55314de3ee0fc15e910194d0daad2de91e975efa3ae3d86f145ac8056a21f

Contents?: true

Size: 1.45 KB

Versions: 24

Compression:

Stored size: 1.45 KB

Contents

using System;

public class BinTree
{
    public BinTree(int value, BinTree left, BinTree right)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public int Value { get; }
    public BinTree Left { get; }
    public BinTree Right { get; }
}

public class Zipper
{   
    public int Value()
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public Zipper SetValue(int newValue)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public Zipper SetLeft(BinTree binTree)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public Zipper SetRight(BinTree binTree) 
    {
        throw new NotImplementedException("You need to implement this function.");
    }

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

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

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

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

    public static Zipper FromTree(BinTree tree)
    {
        throw new NotImplementedException("You need to implement this function.");
    }
}

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.179 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.178 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.177 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.176 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.175 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.174 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.173 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.172 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.171 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.170 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.169 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.167 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.166 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.165 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.164 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.163 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.162 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.161 tracks/csharp/exercises/zipper/Zipper.cs
trackler-2.2.1.160 tracks/csharp/exercises/zipper/Zipper.cs