PokeVideoPlayer v23.9-app.js-020924_
0143ab93_videojs8_1563605_YT_2d24ba15 licensed under gpl3-or-later
Views : 445,876
Genre: Education
License: Standard YouTube License
Uploaded At Mar 23, 2023 ^^
warning: returnyoutubedislikes may not be accurate, this is just an estiment ehe :3
Rating : 4.809 (1,613/32,196 LTDR)
95.23% of the users lieked the video!!
4.77% of the users dislieked the video!!
User score: 92.84- Overwhelmingly Positive
RYD date created : 2024-07-27T06:22:34.158164Z
See in json
Top Comments of this video!! :3
For those of you who are curious, he's got six "A"s in a row there. That's known as a "homopolymeric run" of nucleotides--in this case adenines. Because adenine forms an incredibly weak bond with itself, "A"s and "T"s have a limit to the length of a homopolymeric run before it creates debilitating cruciforms. That number is unknown, but there is a 30,000-long run of "A"s at the end of human mRNA critical to its functionality.
22 |
Haskell version below that returns a collected list of indices for which the two characters don’t match.
example :: String -> String -> [Int]
example seq1 seq2 = mapMaybe (\(i, x1, x2) -> if x1 /= x2 then Just i else Nothing) $ zip3 [0..] seq1 seq2
Alternatively, returning a list of triple tuples of the index and the two non-matching characters
example :: String -> String -> [(Int, Char, Char)]
example seq1 seq2 = mapMaybe (\tup@(_, x1, x2) -> if x1 /= x2 then Just tup else Nothing) $ zip3 [0..] seq1 seq2
2 |
@superleesa2629
1 year ago
for i in range(len(seq1)):
if seq1[i] != seq2[i]:
print(i)
2K |