This file contains hidden or 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
/* | |
best time O(n log2 n) | |
worst time O(n log2 n) | |
*/ | |
package main | |
import ( | |
"fmt" | |
) |
This file contains hidden or 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
package main | |
// worst n^2 | |
// best n | |
import ( | |
"fmt" | |
) | |
func main() { | |
arr := []int{2,5,4,-8,9,1} |
This file contains hidden or 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
=begin | |
O(n + k) | |
=end | |
def countSort arr | |
countArr = [] | |
resultArr = Array.new(arr.length) | |
max = arr.max |
This file contains hidden or 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
def fib_rec (number) | |
if number == 0 | |
return number | |
elsif (number == 1) || (number == 2) | |
return 1 | |
end | |
fib_rec(number - 1) + fib_rec(number - 2) | |
end | |
def fib_non_rec (number) |
This file contains hidden or 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
# Set cover problem | |
states = ['mt', 'wa', 'or', 'id', 'nv', 'ut', 'ca', 'az'].uniq | |
station = {} | |
station["kone"] = ['id', 'nv', 'ut'].uniq | |
station["ktwo"] = ['mt', 'wa', 'id'].uniq | |
station["kthree"] = ['or', 'nv', 'ca'].uniq | |
station["kfour"] = ['nv', 'ut'].uniq | |
station["kfive"] = ['ca', 'az'].uniq |
This file contains hidden or 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
def sum_digits digit | |
if digit < 10 | |
digit | |
else | |
(digit % 10) + (digit / 10).to_f | |
end | |
end | |
def validate number | |
number = number.to_s.reverse.to_i |
This file contains hidden or 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
fib = 9 | |
def BinetFib number | |
phi = ((1 + Math.sqrt(5)) / 2) #or 1.6180339887 | |
divid = phi**number | |
divider = Math.sqrt(5) | |
(divid / divider).round | |
end | |
puts BinetFib(fib); |
This file contains hidden or 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
graph = {} | |
graph['start'] = Hash.new | |
graph['start']['a'] = 6 | |
graph['start']['b'] = 2 | |
graph['a'] = Hash.new | |
graph['a']['fin'] = 1 | |
graph['b'] = Hash.new | |
graph['b']['a'] = 3 | |
graph['b']['fin'] = 5 |
This file contains hidden or 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
# O(|V|+|E|) | |
graph = Hash.new | |
graph["you"] = ["alice", "bob", "claire"] | |
graph["bob"] = ["anuj", "peggy"] | |
graph["alice"] = ["peggy"] | |
graph["claire"] = ["thom", "jonny"] | |
graph["anuj"] = [] | |
graph["peggy"] = [] | |
graph["thom"] = [] |
This file contains hidden or 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
=begin | |
Worst time: O(n2) if choose bad pivot element | |
Approximate time: O(n log n) | |
=end | |
def quicksort array | |
if array.length < 2 | |
array | |
else | |
pivot = array[rand(array.length)] |