We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc659e9 commit bdd755cCopy full SHA for bdd755c
5-string-processing-and-pattern-matching-algorithms/2-burrows-wheeler-suffix-arrays/bwtinverse.py
@@ -0,0 +1,11 @@
1
+# python3
2
+import sys
3
+
4
+def InverseBWT(bwt):
5
+ # write your code here
6
+ return ""
7
8
9
+if __name__ == '__main__':
10
+ bwt = sys.stdin.readline().strip()
11
+ print(InverseBWT(bwt))
5-string-processing-and-pattern-matching-algorithms/2-burrows-wheeler-suffix-arrays/bwtinverse_tests/01
@@ -0,0 +1 @@
+AC$A
5-string-processing-and-pattern-matching-algorithms/2-burrows-wheeler-suffix-arrays/bwtinverse_tests/01e
+ACA$
5-string-processing-and-pattern-matching-algorithms/2-burrows-wheeler-suffix-arrays/bwtinverse_tests/02
+AGGGAA$
5-string-processing-and-pattern-matching-algorithms/2-burrows-wheeler-suffix-arrays/bwtinverse_tests/02e
+GAGAGA$
5-string-processing-and-pattern-matching-algorithms/2-burrows-wheeler-suffix-arrays/bwtinverse_tests/03
@@ -0,0 +1,4 @@
+3
+ATAGA
+ATC
+GAT
5-string-processing-and-pattern-matching-algorithms/2-burrows-wheeler-suffix-arrays/bwtinverse_tests/03e
@@ -0,0 +1,9 @@
+0->1:A
+1->2:T
+2->3:A
+3->4:G
+4->5:A
+2->6:C
+0->7:G
+7->8:A
+8->9:T
0 commit comments