79600899

Date: 2025-04-30 18:25:58
Score: 0.5
Natty:
Report link

This is an easier way to do it.

Snippet:

def subset(a, b):
    set_a = {tuple(item.items()) for item in a}
    set_b = {tuple(item.items()) for item in b}
    
    return set_a.issubset(set_b)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adios Gringo