Skip to content

Instantly share code, notes, and snippets.

View davfre's full-sized avatar

David Fredman davfre

View GitHub Profile
@davfre
davfre / day2_exercise1_template.pl
Created October 17, 2012 05:46
Applied Programming course examples
#!/usr/bin/perl
# Template for Applied Programming course exercise Day2 Exercise 1
use strict;
use warnings;
my @sampleA = (65,69,70,63,70,68);
my @sampleB = (102,95,98,110);
my @sampleC = (112,115,113,109,95,98,100);