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
g++ `pkg-config --cflags --libs opencv` test.cpp -o test && ./test |
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
<script> | |
function start() { | |
// var text = prompt("here a text"); | |
text="adanada"; | |
// text = text.split('').reverse().join(''); | |
// console.log(eval(text)); | |
text = join(reverse(split(text))); | |
console.log(text); | |
} |
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
http://paste.ubuntu.com/14163260/ |
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
<?php | |
function dispay($arr,$n) | |
{ | |
for ($i=0; $i < $n; $i++) { | |
for ($j=0; $j < $j; $j++) { | |
echo $arr[$i][$j]; | |
} | |
} | |
} |
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 "time.h" | |
#include "stdlib.h" | |
#include "math.h" | |
#include "string.h" | |
//2002 | |
//soru 5 | |
// int main(int argc, char const *argv[]) | |
// { | |
// int w = 0 , h=0; |
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
<?php | |
function test($a = "test") | |
{ | |
echo $a; | |
} | |
function search($word,$key) | |
{ | |
for($i=0;$i<strlen($word);$i++) |
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
<?php | |
function test($a = "test") | |
{ | |
echo $a; | |
} | |
function search($word,$key) | |
{ | |
for($i=0;$i<strlen($word);$i++) |
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 searchOne($word,$key,$start = 0) | |
{ | |
for($i=$start;$i<strlen($word);$i++) | |
{ | |
if($word[$i] == $key) | |
{ | |
return $i; | |
} | |
} | |
return -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
http://www.screenleap.com/webeducation |
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 search($word,$key) | |
{ | |
for($i=0;$i<strlen($word);$i++) | |
{ | |
if($word[$i] == $key) | |
{ | |
echo $i; | |
break; | |
} | |
} |
NewerOlder