79422217

Date: 2025-02-07 21:47:26
Score: 1
Natty:
Report link

awk -F';' '{ tot += $2; row++ } END { print tot/row }' file.csv

awk -F';' '{ tot=0; for (c=1; c<=NF; c++) tot+=$c; aver=tot/NF; print $0 ";" aver}' file.csv

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Helio TreeComex