This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"label":"argo v3.6.19","message":"passing","schemaVersion":1,"color":"2da44e"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.saparov.nyu; | |
| public class ShoppingList { | |
| public static class Node { | |
| public String element; | |
| public Node prev; | |
| public Node next; |