Advertisement
Guest User

Untitled

a guest
Aug 7th, 2018
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1.         static int GenerateHashCode(string s)
  2.         {
  3.             int p = 31;
  4.             int hash = 0;
  5.             foreach (var c in s)
  6.                 hash = hash * p + c;
  7.             return hash;
  8.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement