Skip to content

Commit

Permalink
Restructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
citizen428 committed Nov 12, 2011
1 parent be0cac0 commit d3d226c
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 0 deletions.
File renamed without changes.
5 changes: 5 additions & 0 deletions exercise_2_isbn/book_utils.rb
@@ -0,0 +1,5 @@
class BookUtils
def self.valid_isbn13?(isbn)
# your code here
end
end
1 change: 1 addition & 0 deletions book_utils_spec.rb → exercise_2_isbn/book_utils_spec.rb
@@ -1,3 +1,4 @@
require 'rspec'
require './book_utils'

describe BookUtils, "#valid_isbn13" do
Expand Down
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions exercise_5_shift_subtitle/shift_subtitle.markdown
@@ -0,0 +1,3 @@
Solve RPCFN #1:

http://rubylearning.com/blog/2009/09/24/rpcfn-shift-subtitle-1/
12 changes: 12 additions & 0 deletions exercise_6_memoized_fibonacci/memoized_fibonacci.txt
@@ -0,0 +1,12 @@
Part 1:
I want you to write a memoized Fibonacci program.

By memoized I mean that no result should be calculated twice,
previous computations get reused instead.

Requirement: make this as simple as possible. Be creative,
use Ruby in unexpected ways, suprise me!

Part 2:
Write a Fibonacci class that can be called like this: Fib.f_x (where x will
be replaced by an actual number).
3 changes: 3 additions & 0 deletions exercise_7_average_arrival/average_arrival.markdown
@@ -0,0 +1,3 @@
Find a solution for RPCFN #2:

http://rubylearning.com/blog/2009/10/08/rpcfn-average-arrival-time-for-a-flight-2/
3 changes: 3 additions & 0 deletions exercise_9_polynomials/polynomials.markdown
@@ -0,0 +1,3 @@
Solve RPCFN #4:

http://rubylearning.com/blog/2009/11/26/rpcfn-rubyfun-4/

0 comments on commit d3d226c

Please sign in to comment.