Skip to content

Instantly share code, notes, and snippets.

View adityaagungp's full-sized avatar

Aditya Agung Putra adityaagungp

View GitHub Profile
@adityaagungp
adityaagungp / Article.java
Last active November 8, 2018 08:47
Recursion Data Structure Training
public class Article {
private String title;
private List<Article> children = new ArrayList<>();
Article(String title, List<Article> children) {
this.title = title;
this.children = children;
}