Skip to content

Commit 45673cb

Browse files
authored
Update uniqueBString.java
1 parent 5b8f393 commit 45673cb

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

LeetCode/uniqueBString.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Given an array of strings nums containing n unique binary strings each of length n,
2+
return a binary string of length n that does not appear in nums. If there are multiple answers, you may return any of them.
3+
https://leetcode.com/problems/find-unique-binary-string/*/
14
class Solution {
25
public String findDifferentBinaryString(String[] nums) {
36

@@ -25,4 +28,4 @@ public String findDifferentBinaryString(String[] nums) {
2528
return ans1;
2629

2730
}
28-
}
31+
}

0 commit comments

Comments
 (0)