7 kyu

Interleave (2 args)

Description:

A simplification of this kata for brainfuck.

Given two strings (s1, s2) of the same length (separated with \0, ending with \0), return a string with the characters s1[0], s2[0], s1[1], s2[2], s1[2], s2[2], ....

Examples

interleave('\0\0') -> ''
interleave('a\0b\0') -> 'ab'
interleave('ab\0cd\0') -> 'acbd'
interleave('abcdefg\0ABCDEFG\0') -> 'aAbBcCdDeEfFgG'
Strings
Algorithms

More By Author:

Check out these other kata created by user4279289

Stats:

CreatedJul 6, 2023
PublishedJul 6, 2023
Warriors Trained62
Total Skips7
Total Code Submissions42
Total Times Completed36
BF Completions36
Total Stars2
% of votes with a positive feedback rating96% of 13
Total "Very Satisfied" Votes12
Total "Somewhat Satisfied" Votes1
Total "Not Satisfied" Votes0
Total Rank Assessments8
Average Assessed Rank
7 kyu
Highest Assessed Rank
7 kyu
Lowest Assessed Rank
8 kyu
Ad
Contributors
  • user4279289 Avatar
  • Madjosz Avatar
Ad