Skip to content

Instantly share code, notes, and snippets.

@darussian
Created April 2, 2014 00:17
Show Gist options
  • Select an option

  • Save darussian/9925723 to your computer and use it in GitHub Desktop.

Select an option

Save darussian/9925723 to your computer and use it in GitHub Desktop.
public static Integer getNeededAmountForLevel(Integer level){
return (2 * level * (1+level));
}
public static Integer getNeededAmountForLevelTime(Integer level){
return (100000 * level * (1+level));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment