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
    
  
  
    
  | set nocompatible | |
| set backspace=indent,eol,start | |
| " shift+arrow selection | |
| nmap <S-Up> v<Up> | |
| nmap <S-Down> v<Down> | |
| nmap <S-Left> v<Left> | |
| nmap <S-Right> v<Right> | |
| vmap <S-Up> <Up> | |
| vmap <S-Down> <Down> | 
  
    
      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<ctype.h> | |
| char stack[100]; | |
| int top = -1; | |
| void push(char x) | |
| { | |
| stack[++top] = x; | |
| } | 
  
    
      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
    
  
  
    
  | Below are the Big O performance of common functions of different Java Collections. | |
| List | Add | Remove | Get | Contains | Next | Data Structure | |
| ---------------------|------|--------|------|----------|------|--------------- | |
| ArrayList | O(1) | O(n) | O(1) | O(n) | O(1) | Array | |
| LinkedList | O(1) | O(1) | O(n) | O(n) | O(1) | Linked List | |
| CopyOnWriteArrayList | O(n) | O(n) | O(1) | O(n) | O(1) | Array | 
  
    
      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
    
  
  
    
  | First go here: | |
| https://wiki.codeaurora.org/xwiki/bin/QAEP/release | |
| This site gives information about all msm soc release details with tag + android version | |
| Search your msm here.. Check the latest one and look for correct android version and mark that tag. | |
| Now open one of the following links (dependent on your linux kernel version) | 
  
    
      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
    
  
  
    
  | anudeep2011 | |
| 2012-03-07 20:06:49 TEST | |
| 2012-03-07 21:15:26 PRIME1 | |
| 2012-03-07 21:55:30 ONP | |
| 2012-03-07 23:11:36 PALIN | |
| 2012-03-08 13:26:47 ARITH | |
| 2012-03-09 19:49:46 FCTRL | |
| 2012-03-09 19:54:12 FCTRL2 | |
| 2012-03-13 18:19:13 CMPLS | |
| 2012-03-13 21:14:39 ADDREV | 
  
    
      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
    
  
  
    
  | /* Queue - Circular Array implementation in C++*/ | |
| #include<iostream> | |
| using namespace std; | |
| #define MAX_SIZE 101 //maximum size of the array that will store Queue. | |
| // Creating a class named Queue. | |
| class Queue | |
| { | |
| private: | |
| int A[MAX_SIZE]; | 
  
    
      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<bits/stdc++.h> | |
| #include<vector> | |
| #define pb push_back | |
| #define IO ios_base::sync_with_stdio(false); cin.tie(NULL); | |
| #define ll long long int | |
| using namespace std; | |
| int main() { | |
| int tc; | |
| cin>>tc; | |
| while(tc--) | 
  
    
      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 <bits/stdc++.h> | |
| using namespace std; | |
| int main() | |
| { | |
| int n,i,count=0; | |
| cin>>n; | |
| int a[n]; | |
| for(i=0;i<n;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
    
  
  
    
  | /*https://www.hackerrank.com/contests/smart-interviews-bvritn-2021a/challenges/si-find-excel-column-name/problem | |
| Error : Timelimit Exceed | |
| */ | |
| #include<bits/stdc++.h> | |
| using namespace std; | |
| int as=64; | |
| void varma(int n) | |
| { | |
| cout<<char(n+as); | 
  
    
      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
    
  
  
    
  | /*https://www.hackerrank.com/contests/smart-interviews-bvritn-2021a/challenges/si-smart-string*/ | |
| #include<bits/stdc++.h> | |
| using namespace std; | |
| int main() | |
| { | |
| int i,j; | |
| string a; | |
| cin>>a; | |
| sort(a.begin(),a.end()); | 
NewerOlder