-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (104 loc) · 4.53 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="Ruby-exercises : A general repo with some random Ruby exercises" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>Ruby-exercises</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/AlexVPopov/ruby-exercises">View on GitHub</a>
<h1 id="project_title">Ruby-exercises</h1>
<h2 id="project_tagline">A general repo with some random Ruby exercises</h2>
<section id="downloads">
<a class="zip_download_link" href="https://github.com/AlexVPopov/ruby-exercises/zipball/master">Download this project as a .zip file</a>
<a class="tar_download_link" href="https://github.com/AlexVPopov/ruby-exercises/tarball/master">Download this project as a tar.gz file</a>
</section>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h1>
<a name="ruby-exercises" class="anchor" href="#ruby-exercises"><span class="octicon octicon-link"></span></a>Ruby exercises</h1>
<p>This is a collection of implementations of short algorithmic exercises, solved in Ruby. The exercises come from a variety of places such as a <a href="http://fmi.ruby.bg/">Ruby course</a> I visited in FMI, <a href="http://projecteuler.net/">Project Euler</a> and others.</p>
<h1>
<a name="a-list-of-exercies" class="anchor" href="#a-list-of-exercies"><span class="octicon octicon-link"></span></a>A list of exercies</h1>
<table>
<thead><tr>
<th>Name</th>
<th>README</th>
<th>Implementation</th>
<th>Tests</th>
<th>Source</th>
</tr></thead>
<tbody>
<tr>
<td><strong>Abomination</strong></td>
<td><a href="Abomination/README.md">README</a></td>
<td><a href="Abomination/abomination.rb">Implementation</a></td>
<td><a href="spec/abomination_spec.rb">Tests</a></td>
<td><a href="http://2012.fmi.ruby.bg/challenges/5">FMI</a></td>
</tr>
<tr>
<td><strong>Binary Mobile</strong></td>
<td><a href="Binary%20Mobile/README.md">README</a></td>
<td><a href="Binary%20Mobile/binary_mobile.rb">Implementation</a></td>
<td><a href="spec/binary_mobile_spec.rb">Tests</a></td>
<td><a href="http://2012.fmi.ruby.bg/challenges/3">FMI</a></td>
</tr>
<tr>
<td><strong>Caesar Cipher</strong></td>
<td><a href="Caesar%20Cipher/README.md">README</a></td>
<td><a href="Caesar%20Cipher/caesar_cipher.rb">Implementation</a></td>
<td><a href="spec/caesar_cipher_spec.rb">Tests</a></td>
<td><a href="http://2012.fmi.ruby.bg/challenges/2">FMI</a></td>
</tr>
<tr>
<td><strong>Magic Square</strong></td>
<td><a href="Magic%20Square/README.md">README</a></td>
<td><a href="Magic%20Square/magic_square.rb">Implementation</a></td>
<td><a href="spec/magic_square_spec.rb">Tests</a></td>
<td><a href="http://2012.fmi.ruby.bg/challenges/1">FMI</a></td>
</tr>
<tr>
<td><strong>Monochrome Bitmaps</strong></td>
<td><a href="Monochrome%20Bitmaps/README.md">README</a></td>
<td><a href="Monochrome%20Bitmaps/monochrome_bitmaps.rb">Implementation</a></td>
<td><a href="spec/monochrome_bitmaps_spec.rb">Tests</a></td>
<td><a href="http://2012.fmi.ruby.bg/challenges/4">FMI</a></td>
</tr>
<tr>
<td><strong>Music Collection</strong></td>
<td><a href="Music%20Collection/README.md">README</a></td>
<td><a href="Music%20Collection/music_collection.rb">Implementation</a></td>
<td><a href="spec/music_collection_spec.rb">Tests</a></td>
<td><a href="http://2012.fmi.ruby.bg/tasks/2">FMI</a></td>
</tr>
</tbody>
</table>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p class="copyright">Ruby-exercises maintained by <a href="https://github.com/AlexVPopov">AlexVPopov</a></p>
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-40243008-3");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>