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
| #!/bin/env python | |
| # -*- coding: utf-8 -*- | |
| from timeit import timeit | |
| class Fib: | |
| def __init__(self, end): | |
| self.a = 0 | |
| self.b = 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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| int mkdstr(char **, int (*)(void)); | |
| int main() { | |
| int no = 0; | |
| int len; | |
| int max_no; |
NewerOlder