Commit f650feb
bug: Fix PatchMerging duplicate merging (Project-MONAI#8285)
Fixes # .
### Description
A few sentences describing the changes proposed in this pull request.
### Types of changes
- [x] Non-breaking change (fix or new feature that would not break
existing functionality).
Fixing issue Project-MONAI#8284
In this format there are no duplicates:
```
t = [
(0, 0, 0),
(1, 0, 0),
(0, 1, 0),
(0, 0, 1),
(1, 0, 1),
(1, 1, 0),
(0, 1, 1),
(1, 1, 1),
]
print(set(t))
# {(1, 0, 1), (1, 1, 0), (0, 1, 0), (0, 0, 0), (1, 0, 0), (0, 0, 1), (1, 1, 1), (0, 1, 1)}
```
---------
Signed-off-by: pooya-mohammadi <pooyamohammadikazaj@gmail.com>
Signed-off-by: Can-Zhao <volcanofly@gmail.com>1 parent eef70a7 commit f650feb
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
782 | 782 | | |
783 | 783 | | |
784 | 784 | | |
785 | | - | |
786 | | - | |
787 | | - | |
| 785 | + | |
| 786 | + | |
| 787 | + | |
788 | 788 | | |
789 | 789 | | |
790 | 790 | | |
| |||
0 commit comments