MCPcopy Create free account
hub / github.com/Thillai2002/Leetcode / Solution

Class Solution

Add Two Integers.java:1–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Solution {
2 public int sum(int num1, int num2) {
3 return num1+num2;
4 }
5}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected