Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132937 views
License: OTHER
1
public class Node {
2
int container;
3
Node next;
4
5
public Node(int container) {
6
this.container = container;
7
}
8
}
9
10
11