Compare commits

...

1 Commits
main ... v3

Author SHA1 Message Date
FunctionsAPI
d562905f10 Automatic push from FunctionsAPI 2025-08-24 09:04:28 +00:00
3 changed files with 7 additions and 2 deletions

View File

@ -1,2 +1 @@
# 008875e0de594eeebebdc24674c0b3bb
# python hello-world

4
main.py Normal file
View File

@ -0,0 +1,4 @@
function calculateFinalScore(taskCompletionRate, skillCommunication, skillLeadership) {
const skillScore = (skillCommunication + skillLeadership) / 2;
return 0.6 * taskCompletionRate + 0.4 * skillScore;
}

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
functions-framework==1.4.3
markupsafe==2.0.1