Guest User

Untitled

a guest
Oct 16th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. -module(fake).
  2.  
  3.  
  4.  
  5.  
  6. non_duplicate_random(Gen,Len) ->
  7. ?SHUFFLE(non_duplicate(Gen,Len)).
  8.  
  9. non_duplicate(Gen, Len) ->
  10. ?LET(A,
  11. list(Len,Gen) ,
  12. lists:usort(A)
  13. ).
Add Comment
Please, Sign In to add comment