#Recursive version which we will write mostly!
def fibonacciVal(n)
if n == 0
return 0
elsif n == 1
return 1
else
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
class Client: | |
def coin_list(self): | |
return False | |
def coin_snapshot_full_by_id(self, coin_id): | |
return False | |
def coin_snapshot(self, fsym, tsym): | |
return False |
OlderNewer