Category: A ll Codes

04
Feb
2016

URI Online Judge Solution | 1332 One-Two-Three | UVA 12289

Reference: https://github.com/deniscostadsc/playground/blob/master/uri/1332/1332.cpp Code: #include<cstdio> #include<cstring> using namespace std; int main() { int n; char s[6]; scanf(“%d”,&n); while(n–){ scanf(“%s”,&s);…

01
Feb
2016

Some Useful Android Fix

Create Credits Screen in Android Basic SQLite C.R.U.D operation in Android Sending data back to parent activity…

25
Jan
2016

URI Online Judge Solution| 1168 LED

#include<cstdio> #include<cstdlib> #include<cstring> int main() { char x[1111]; int i,j,n,sum=0; scanf(“%d”,&n); for(i=0; i<n; i++) { scanf(“%s”,x); for(j=0;…

22
Jan
2016

Some Android Links that May Help

http://stackoverflow.com/questions/12435542/how-to-use-intent-constructor

21
Jan
2016

Android Core Building Blocks

Android core building blocks Content Provider: are use to share data between the applications Fragment: Fragments are…

21
Jan
2016

Android Core Building Blocks

Android core building blocks Content Provider: are use to share data between the applications Fragment: Fragments are…