Interview-Style Coding Problem: Estimate Pi
Saw this as an example of the kind of programming test you get in interviews, so I decided to give it a try. Just to report, it gets there at $i = 130657. #!/usr/bin/env perl
use feature qw{ say } ;
use strict ;
use warnings ;
use utf8 ;
# Given that Pi ...
No comments:
Post a Comment