t435.py.real 779 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. len
  2. True
  3. True
  4. x in s
  5. True
  6. True
  7. x not in s
  8. True
  9. True
  10. isdisjoint(other)
  11. True
  12. True
  13. issubset(other)
  14. True
  15. True
  16. True
  17. set <= other
  18. True
  19. True
  20. True
  21. True
  22. set < other
  23. True
  24. True
  25. True
  26. True
  27. issuperset(other)
  28. True
  29. True
  30. True
  31. set >= other
  32. True
  33. True
  34. True
  35. True
  36. set > other
  37. True
  38. True
  39. True
  40. True
  41. union(other,...)
  42. True
  43. True
  44. True
  45. True
  46. intersection(other,...)
  47. True
  48. True
  49. True
  50. True
  51. difference(other,...)
  52. True
  53. True
  54. True
  55. True
  56. symmetric_difference(other)
  57. True
  58. True
  59. True
  60. True
  61. copy()
  62. True
  63. True
  64. True
  65. True
  66. update(other,...)
  67. True
  68. True
  69. True
  70. True
  71. intersection_update(other,...)
  72. True
  73. True
  74. True
  75. True
  76. difference(other,...)
  77. True
  78. True
  79. True
  80. True
  81. symmetric_difference_update(other)
  82. True
  83. True
  84. True
  85. True
  86. add(elem)
  87. True
  88. True
  89. remove(elem)
  90. True
  91. True
  92. discard(elem)
  93. True
  94. True
  95. pop()
  96. True
  97. True
  98. True
  99. True
  100. True