This problem is a simple version of control charts in statistics. Intput consists from 30 or more observations.

  • Upper limit = mean(input) + 3 * std(input)
  • Lower limit = mean(input) - 3 * std(input)

If all of the observations are between upper limit and lower limit then return true.

Solution Stats

105 Solutions

44 Solvers

Last Solution submitted on Feb 25, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...