Created
July 11, 2021 14:36
-
-
Save aashish-chaubey/51aa70a61932739e03311e239e3eaf1b to your computer and use it in GitHub Desktop.
Revisions
-
aashish-chaubey created this gist
Jul 11, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ def taskOfPairing(freq): count = 0 marker = False for i in freq: if i != 0: count += i // 2 if i % 2 != 0 and marker: count += 1 marker = False elif i % 2 != 0: marker = True else: marker = False return count