This repository has been archived by the owner on Aug 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
129 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import Head from "next/head" | ||
|
||
import Layout from '../components/Layout' | ||
export default () => ( | ||
<Layout> | ||
<Head> | ||
<title>CC#1 Rot 13</title> | ||
<meta name="description" content="The first of many YLD coding challenges" /> | ||
</Head> | ||
|
||
<div id="main" className="alt"> | ||
<section id="one"> | ||
<div className="inner"> | ||
<header className="major"> | ||
<h1>CC#1 Rot 13:</h1> | ||
</header> | ||
<span className="image main"><img src="/static/images/watch.jpg" alt="" /></span> | ||
<p>Welcome to the first YLD Coding Challenge!</p> | ||
<p>You are tasked in writing a function that returns the deciphered string input into readable text.<br/> | ||
The function can be named what ever you want it to be named: | ||
<br/> | ||
</p> | ||
<h4>Examples</h4> | ||
<p> | ||
An example application that works could take the string <code>Bar lyq!</code> as an argument which is then deciphered and returned as "One yld!". | ||
<pre><code> | ||
{`<?php | ||
function rot13($string) { | ||
return str_rot13($string); | ||
} | ||
?>`} | ||
</code></pre> | ||
</p> | ||
<h4>Categories</h4> | ||
<p><ol> | ||
<li>Smallest working solution in bytes</li> | ||
<li>Most performant solution</li> | ||
<li>Most esoteric solution (complex, using monads, built 100% in css) for example</li> | ||
</ol></p> | ||
<h4>Rules</h4> | ||
<p>Your solution can be in any language, just make sure you provide instructions on how to run!<br/> | ||
You <strong>can</strong> work in a group, or on your own! | ||
<br/> | ||
External modules / libraries will count towards the smallest solution size. | ||
</p> | ||
<h4>How to submit</h4> | ||
<p>Slack your solution to (@tomgco) privately with instructions on how to run, the winner will be announce at the next YLD MCM on the Friday, 11th October.</p> | ||
<h4>Questions</h4> | ||
<p>Please raise them on #group-engineering in slack or to @tomgco directly.</p> | ||
</div> | ||
</section> | ||
</div> | ||
</Layout> | ||
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,4 @@ | |
} | ||
} | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.