LeetCode Solution, Easy, 1114. Print in Order
1114. Print in Order
題目敘述
Suppose we have a class:
public class Foo {
public void first() { print("first"); }
public void second() { print("second"); }
public void third() { print("third"); }
}
The same instance of Foo will be passed to three d...
blog.taiwolskit.com2 min read