MCPcopy Create free account
hub / github.com/Vishruth-S/CompetitiveCode / DCTrees

Function DCTrees

CodeChef_problems/A Problem on Sticks/solution2.py:26–31  ·  view source on GitHub ↗
(arr)

Source from the content-addressed store, hash-verified

24
25
26def DCTrees(arr):
27 arr = list(set(arr))
28 if arr.count(0) != 0:
29 arr.remove(0)
30
31 return len(arr)
32
33
34# driver code

Callers 1

solution2.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected