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
#!/usr/bin/env python3 | |
import time | |
class Crypto(): | |
def __init__(self): | |
self.start_time = time.clock() | |
def gcd_recursive(self, n, m): |
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
#include <stdio.h> | |
#include <stdlib.h> | |
int main(int argc, const char * argv[]) { | |
FILE *file; | |
file = fopen("./oz.txt", "r+"); | |
if (file == NULL) | |
{ |
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
// | |
// main.c | |
// Gokay -> Find Highest Value and Indexes in Multidimensional Array | |
// | |
// Created by Mustafa Hastürk on 19/07/15. | |
// Copyright (c) 2015 Mustafa Hastürk. All rights reserved. | |
// | |
#include <stdio.h> | |
#include <stdlib.h> |