-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fire - Noor #37
base: master
Are you sure you want to change the base?
Fire - Noor #37
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
ansi (1.5.0) | ||
builder (3.2.4) | ||
coderay (1.1.3) | ||
method_source (1.0.0) | ||
minitest (5.14.2) | ||
minitest-reporters (1.4.2) | ||
ansi | ||
builder | ||
minitest (>= 5.0) | ||
ruby-progressbar | ||
minitest-skip (0.0.3) | ||
minitest (~> 5.0) | ||
minitest-spec (0.0.2.1) | ||
minitest (>= 3.0) | ||
pry (0.13.1) | ||
coderay (~> 1.1) | ||
method_source (~> 1.0) | ||
rake (13.0.1) | ||
ruby-progressbar (1.10.1) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
minitest | ||
minitest-reporters | ||
minitest-skip | ||
minitest-spec | ||
pry | ||
rake | ||
|
||
BUNDLED WITH | ||
2.1.4 |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,49 +1,88 @@ | ||||||||||||||||||||||||||
# Authoring recursive algorithms. Add comments including time and space complexity for each method. | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
# Time complexity: ? | ||||||||||||||||||||||||||
# Space complexity: ? | ||||||||||||||||||||||||||
# Time complexity: O(n) | ||||||||||||||||||||||||||
# Space complexity: O(n) | ||||||||||||||||||||||||||
def factorial(n) | ||||||||||||||||||||||||||
raise NotImplementedError, "Method not implemented" | ||||||||||||||||||||||||||
raise ArgumentError,"unvailed number" if n < 0 | ||||||||||||||||||||||||||
return 1 if n == 0 | ||||||||||||||||||||||||||
return n * factorial(n-1) | ||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
# Time complexity: ? | ||||||||||||||||||||||||||
# Space complexity: ? | ||||||||||||||||||||||||||
# Time complexity: O(n) | ||||||||||||||||||||||||||
# Space complexity: O(n) | ||||||||||||||||||||||||||
def reverse(s) | ||||||||||||||||||||||||||
Comment on lines
+11
to
13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||||||||||||||||||||
raise NotImplementedError, "Method not implemented" | ||||||||||||||||||||||||||
if s.length <= 1 | ||||||||||||||||||||||||||
return s | ||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
i = 1 | ||||||||||||||||||||||||||
reversed_string = "" | ||||||||||||||||||||||||||
while i <= s.length | ||||||||||||||||||||||||||
reversed_string += s[-i] | ||||||||||||||||||||||||||
i += 1 | ||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||
return reversed_string | ||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
# Time complexity: ? | ||||||||||||||||||||||||||
# Space complexity: ? | ||||||||||||||||||||||||||
# Time complexity: O(n) | ||||||||||||||||||||||||||
# Space complexity: O(n) | ||||||||||||||||||||||||||
def reverse_inplace(s) | ||||||||||||||||||||||||||
Comment on lines
+27
to
29
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Think about if we changed the method signature to the following
Suggested change
Can you see a way to do this with O(n) space/time complexity now? |
||||||||||||||||||||||||||
raise NotImplementedError, "Method not implemented" | ||||||||||||||||||||||||||
if s.length <= 1 | ||||||||||||||||||||||||||
return s | ||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
return s[-1] + reverse(s[1..-2]) + s[0] | ||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
# Time complexity: ? | ||||||||||||||||||||||||||
# Space complexity: ? | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
# Time complexity: O(n) | ||||||||||||||||||||||||||
# Space complexity: O(n) | ||||||||||||||||||||||||||
def bunny(n) | ||||||||||||||||||||||||||
Comment on lines
+38
to
40
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||||||||||||||||||||||||||
raise NotImplementedError, "Method not implemented" | ||||||||||||||||||||||||||
return 0 if n == 0 | ||||||||||||||||||||||||||
return 2 if n == 1 | ||||||||||||||||||||||||||
return bunny(n-1)+2 | ||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
# Time complexity: ? | ||||||||||||||||||||||||||
# Space complexity: ? | ||||||||||||||||||||||||||
def nested(s) | ||||||||||||||||||||||||||
raise NotImplementedError, "Method not implemented" | ||||||||||||||||||||||||||
# Time complexity: O(n) | ||||||||||||||||||||||||||
# Space complexity: O(n) | ||||||||||||||||||||||||||
def nested(s, i = 1 ) | ||||||||||||||||||||||||||
Comment on lines
+46
to
+48
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is close, but not quite right. |
||||||||||||||||||||||||||
return true if s.empty? | ||||||||||||||||||||||||||
if s[i+1] == "(" && s[-i] == ")" | ||||||||||||||||||||||||||
return true | ||||||||||||||||||||||||||
Comment on lines
+50
to
+51
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||
return false | ||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
return nested(s, i - 1) | ||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
# Time complexity: ? | ||||||||||||||||||||||||||
# Space complexity: ? | ||||||||||||||||||||||||||
def search(array, value) | ||||||||||||||||||||||||||
raise NotImplementedError, "Method not implemented" | ||||||||||||||||||||||||||
# Time complexity: O(n) | ||||||||||||||||||||||||||
# Space complexity: O(n) | ||||||||||||||||||||||||||
def search(array, value, i = 0) | ||||||||||||||||||||||||||
Comment on lines
+59
to
+61
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||||||||||||||||||||||||||
return false if i >= array.length | ||||||||||||||||||||||||||
return true if array[i] == value | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
return search(array, value, i + 1) | ||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
# Time complexity: ? | ||||||||||||||||||||||||||
# Space complexity: ? | ||||||||||||||||||||||||||
# Time complexity: O(n) | ||||||||||||||||||||||||||
# Space complexity: O(n) | ||||||||||||||||||||||||||
def is_palindrome(s) | ||||||||||||||||||||||||||
Comment on lines
+68
to
70
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 Because of the slice you are doing with each recursive call, it's O(n^2) |
||||||||||||||||||||||||||
raise NotImplementedError, "Method not implemented" | ||||||||||||||||||||||||||
return s[0] == s[-1] && (s.length <= 2 || is_palindrome(s[1..-2])) | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
# Time complexity: ? | ||||||||||||||||||||||||||
# Space complexity: ? | ||||||||||||||||||||||||||
def digit_match(n, m) | ||||||||||||||||||||||||||
raise NotImplementedError, "Method not implemented" | ||||||||||||||||||||||||||
# Time complexity: O(n) | ||||||||||||||||||||||||||
# Space complexity: O(n) | ||||||||||||||||||||||||||
def digit_match(n, m, i = 0, count = 0) | ||||||||||||||||||||||||||
Comment on lines
+75
to
+77
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||||||||||||||||||||
n.to_s | ||||||||||||||||||||||||||
m.to_s | ||||||||||||||||||||||||||
Comment on lines
+78
to
+79
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
if n[i] == m[i] | ||||||||||||||||||||||||||
return count + 1 | ||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||
return count | ||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
return digit_match(n, m, i + 1, count) | ||||||||||||||||||||||||||
Comment on lines
+81
to
+87
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍