https://github.com/fukaoi/fibonacci-haxe
Fibonacci programming of Haxe
https://github.com/fukaoi/fibonacci-haxe
Last synced: about 1 month ago
JSON representation
Fibonacci programming of Haxe
- Host: GitHub
- URL: https://github.com/fukaoi/fibonacci-haxe
- Owner: fukaoi
- Created: 2012-09-27T08:13:30.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-09-27T08:21:14.000Z (over 12 years ago)
- Last Synced: 2025-02-04T15:49:08.777Z (3 months ago)
- Language: HaXe
- Size: 93.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fibonacci-Haxe
Fibonacci programming of Haxe.
##3 pattern algorithm
* runRecur():recursive logic(very slowly)
* runProc():no recursive.procedure logic(fast)
* runMacro():macro of Haxe(very fast)