We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b8f393 commit 45673cbCopy full SHA for 45673cb
1 file changed
LeetCode/uniqueBString.java
@@ -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/*/
4
class Solution {
5
public String findDifferentBinaryString(String[] nums) {
6
@@ -25,4 +28,4 @@ public String findDifferentBinaryString(String[] nums) {
25
28
return ans1;
26
29
27
30
}
-}
31
+}
0 commit comments