Skip to content

Instantly share code, notes, and snippets.

namespace TopologicalSortOfBiryaniRecipe
{
using System;
using System.Collections.Generic;
public static class TopologicalSortHelper
{
public static List<StepNode> TopologicalSort(List<StepNode> inputGraph)
{
/*****Initialize storage needed for calculations*******/