Instance | Branch |
---|
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
/* | |
* FUNCTION POINTERS | |
* Created By :Sinan NAR | |
* Creation Date :26/02/2012 | |
* | |
* you can ask me anything about these codes if you do not understand | |
* mail me : [email protected] | |
*/ | |
#include <stdio.h> |
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 <termios.h> | |
#include <unistd.h> | |
char mygetch(void); | |
int main() | |
{ | |
/* | |
DRIVER SOURCE CODES HERE |
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
BU DOSYALAR DİZİSİ FACEBOOK GRUBU OLAN C AND JAVA PROGRAMMING DE VERILEN HW01 IN KODLARIDIR | |
ODEV DDOSYASI: | |
https://docs.google.com/document/pub?id=1ImUBZNdu-AD67zOnkErvpY8Y6OuojDgFWMD9kQqIDaQ |
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
BU ODEVDE İSTENİLEN HERSEY YAPILMAMIS OLUP BAZI EKSIKLIKLERI BULUNMAKTA | |
AMA KIMSEDEN GCC DE DERLENECEK BI ODEV GELMEDIGI ICIN BUNU KOYUYORUM | |
ödevde istenilenlerle alakalı dosya: | |
https://docs.google.com/document/pub?id=1sKFXby2j9RDPr0tRdPF2InTu0sphePHuDFgVdf8utkM |
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
/* | |
example video link : http://www.youtube.com/watch?v=XcuBvj0pw-E | |
*/ | |
/* | |
* FILE NAME : HW05_091044005_PART_3.c | |
* | |
* CREADET BY : Sinan NAR | |
* CREATION DATE : 08/04/2011 | |
* |
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
BIL 108 - Computer Programming | |
LW – 10 | |
11.05.2012 | |
In this week we will write recursive functions working on integers and sets represented by integer arrays. | |
******************************************************************************************************************************************* | |
PART 1(2 Pts) Write a recursive function “isElement” which determines if a given integer is an element of a given set. | |
The set will be represented by an integer array. | |
******************************************************************************************************************************************* | |
PART2 (1Pts) Write a recursive function “isDisjoint” which determines if given 2 sets are disjoint. |
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
// | |
// main.cpp | |
// BackgroundSubstraction | |
// | |
// Created by Sinan on 18/10/14. | |
// Copyright (c) 2014 Sinan. All rights reserved. | |
// | |
#include <iostream> | |
#include <opencv2/opencv.hpp> |
Google "rbrayb gist"
#globalazure
http://auckland.azurebootcamp.net/
My presentation
Add a user to Azure AD:
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
using System; | |
using System.Linq; | |
using System.Collections.Generic; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
foreach (var test in GetTestCases()) { | |
var result = IsAnagramPair(test.First, test.Second); |
OlderNewer