cancel
Showing results for 
Search instead for 
Did you mean: 
Maximus1
New Contributor II
since ‎10-24-2025
‎10-24-2025

User Stats

  • 3 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

I've been running some performance tests with Databricks, but I am struggling to make sense of the results.def g(a, b): N = 1000 t1 = time.time() for _ in range(N): a**5 + 2 * b t2 = time.time() return (t2 - t1) / N a = n...