Open sonalgoyal opened 1 year ago
Current feature is if (first+second != 0) score = 2.0*Math.abs(first - second)/(first + second); Do we really need the 2?
first+scecond!=0 can also create problems in cases like -2+2 whereas intention might have been 0+0
Current feature is if (first+second != 0) score = 2.0*Math.abs(first - second)/(first + second); Do we really need the 2?