Google "rbrayb gist"
#globalazure
http://auckland.azurebootcamp.net/
My presentation
Add a user to Azure AD:
| 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); |
Google "rbrayb gist"
#globalazure
http://auckland.azurebootcamp.net/
My presentation
Add a user to Azure AD:
| // | |
| // main.cpp | |
| // BackgroundSubstraction | |
| // | |
| // Created by Sinan on 18/10/14. | |
| // Copyright (c) 2014 Sinan. All rights reserved. | |
| // | |
| #include <iostream> | |
| #include <opencv2/opencv.hpp> |
| 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. |
| /* | |
| 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 | |
| * |
| 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 |
| 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 |
| #include <termios.h> | |
| #include <unistd.h> | |
| char mygetch(void); | |
| int main() | |
| { | |
| /* | |
| DRIVER SOURCE CODES HERE |
| /* | |
| * 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 : sinan.nar@gmail.com | |
| */ | |
| #include <stdio.h> |