Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #include <algorithm>
  2. #include <cstdio>
  3.  
  4. using namespace std;
  5.  
  6. #define LOG(x) cerr << #x << " = " << (x) << "\n"
  7.  
  8. typedef long long llint;
  9. typedef pair<int,int> pii;
  10.  
  11. int hash(char a[]) {
  12.   // radi nesto;
  13.   return 3;
  14. }
  15.  
  16. int main() {
  17.   char a[] = "mirko";
  18.   hash(a);
  19.   return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement