Skip to content

Instantly share code, notes, and snippets.

@ayoukhananov
Last active November 18, 2018 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayoukhananov/8e870dad5baeec79cbda4be5f56617f6 to your computer and use it in GitHub Desktop.
Save ayoukhananov/8e870dad5baeec79cbda4be5f56617f6 to your computer and use it in GitHub Desktop.
public class Placeholder {
private final Map<String, Integer> preferences;
private final Map<String, Integer> counts;
public Placeholder(Map<String, Integer> preferences, Map<String, Integer> counts){
this.preferences = preferences;
this.counts = counts;
}
public Map<String, Integer> accept(Map<String, Integer> offer, int countdown) {
// TODO - implement code here ...
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment