Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ShivaBhattacharjee/KeyZen
/ addPoints
Method
addPoints
data/java/01_methods.java:2–4 ·
view source on GitHub ↗
(int current, int delta)
Source
from the content-addressed store, hash-verified
1
class
ScoreUtils {
2
static
int
addPoints(
int
current,
int
delta) {
3
return
current + delta;
4
}
5
6
static
int
addPoints(
int
current,
int
delta,
int
bonus) {
7
return
current + delta + bonus;
Callers
1
main
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected