Skip to content

Instantly share code, notes, and snippets.

@bdunovska
bdunovska / Change.java
Last active September 24, 2015 23:04
CodeU Final Exercises.
/**
* Created by belladunovska on 09/09/15.
*/
public class Change {
/**
* Helper method to compute the ways to make a change using recursion.
*
* @param n cents
* @param coins possible values
@bdunovska
bdunovska / MainActivity.java
Created August 16, 2015 17:47
DataBindingExample
public class MainActivity extends AppCompatActivity {
private User user;
private LinearLayoutManager layoutManager;
private RecyclerView recyclerView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);