Advertisement
hibbzboi

Untitled

Jun 11th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1.         bool CzyZawieraSieWPermutacji(List<string> obiektZC3, List<string> sprawdzanyZObiektuParagonu)
  2.         {
  3.             for (int i = 0; i < obiektZC3.Count; i++)
  4.             {
  5.                 if (obiektZC3[i] != sprawdzanyZObiektuParagonu[i])
  6.                 {
  7.                     return false;
  8.                 }
  9.             }
  10.             return true;
  11.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement