Files
2020-07-24 00:37:46 +09:00

12 lines
137 B
Erlang

-module(util).
-export([match/2]).
match({P1,P2}, {P1,P2}) ->
true;
match({P1,P2}, {P2,P1}) ->
true;
match(_,_) ->
false.