Submit solution
Points:
15 (partial)
Time limit:
1.0s
Memory limit:
16M
Author:
Problem type
Allowed languages
Perl
Perl programs are a form of art. To show your understanding of this art form, you are invited to create an artwork! Your artwork is simple, print the string Don Mills Online Judge
. You will be graded based on the length of your program.
Input Specification
There may be input. However, there may not be more than 0 bytes of input.
Output Specification
You are to output Don Mills Online Judge
.
Sample Input
Wait, what?
Sample Output
Don Mills Online Judge
Grading
You will receive points, where is the length of your program. If your program /\w/
, then you will receive a score of zero.
Comments
perl is truly black magic
76 byte solution by teebee?
68 character solution by me.
81 character solution by Phoenix1369?
78 character solution by me.
So are we supposed to write the shortest code possible to print "Don Mills Online Judge" in Perl (or the other given languages)? I'm doing that but it is giving me /\w/. Is there something more to this problem?
\w
is a regex metacharacter representing[a-zA-Z0-9_]
: that is, an alphanumeric character (and underscores). In other words, your solution must not contain any letters, numbers, or underscores to be considered valid.Good luck!