Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
webServer
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hasan.bahjat
webServer
Commits
8781fc51
Commit
8781fc51
authored
Oct 24, 2024
by
hasan khaddour
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Comments & fix Negative Number Case
parent
7e09b055
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
4 deletions
+25
-4
TaskGeometricMean.java
src/main/java/task/TaskGeometricMean.java
+25
-4
No files found.
src/main/java/task/TaskGeometricMean.java
View file @
8781fc51
...
...
@@ -2,18 +2,39 @@ package task;
import
java.util.Arrays
;
// This Task Calculate The Geometric Mean
// The Geo-Mean is defined by :
// Geo-Mean = N-Root of (a1 * a2 * ... * an) , ai >=0
//
public
class
TaskGeometricMean
extends
TaskImpl
{
@Override
public
void
execute
()
{
//Split the input values
String
[]
stringArray
=
input
.
split
(
","
);
// Parse the values
double
[]
doubleArray
=
Arrays
.
stream
(
stringArray
)
.
mapToDouble
(
Double:
:
parseDouble
)
.
toArray
();
// Check if all the values is poistive
boolean
allPositive
=
Arrays
.
stream
(
doubleArray
).
allMatch
((
e
)->
e
>
0
);
if
(
allPositive
){
// Calculate the geometric mean
// Calculate P = (a1 * a2 * ... * an)
double
product
=
Arrays
.
stream
(
doubleArray
).
reduce
(
1.0
,
(
a
,
b
)
->
a
*
b
);
// Calculate the Geo-Mean = N-Root of( P )
double
geometricMean
=
Math
.
pow
(
product
,
1.0
/
doubleArray
.
length
);
// Set tThe result
result
=
String
.
valueOf
(
geometricMean
);
}
else
{
result
=
"All The Array Values Should Be Positive"
;
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment