Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Clojure
- C#
- D
- Fortran
- Go
- Go
- Haskell
- Haskell
- JS
- JS
- Java
- Java
- Java
- Java
- PHP
- Pascal
- Perl
- Python
- Python
- Python
- Python
- Ruby
- Rust
- Scheme
- Smalltalk
- Smalltalk
(doseq [i (interleave items1 items2)]
(println i))
interleave can receive any number of items, but truncates when any of them is exhausted
roundRobin(items1, items2).each!writeln;
do i=1, min(size(items1), size(items2))
print *,items1(i), items2(i)
end do
This prints the elements up to the smaller size of the two arrays.
for i := range min(len(items1), len(items2)) {
fmt.Println(items1[i])
fmt.Println(items2[i])
}
for i := 0; i < len(items1) || i < len(items2); i++ {
if i < len(items1) {
fmt.Println(items1[i])
}
if i < len(items2) {
fmt.Println(items2[i])
}
}
mapM_ print . concat
$ zipWith (\a b -> [a,b]) items1 items2
the extra elements at the end of the longer list are ignored
interweave :: [a] -> [a] -> [a] -- optional signature
interweave [] ys = ys
interweave xs [] = xs
interweave (x:xs) (y:ys) = x : y : interweave xs ys
main = mapM_ print $ interweave items1 items2
$ is the function application operator of Haskell to eliminate annoying parentheses.
E.g., f $ g x y z == f (g x y z)
E.g., f $ g x y z == f (g x y z)
const iterator1 = items1[Symbol.iterator]()
const iterator2 = items2[Symbol.iterator]()
let result1 = iterator1.next()
let result2 = iterator2.next()
while(!(result1.done && result2.done)) {
if (!result1.done) {
console.log(result1.value)
result1 = iterator1.next()
}
if (!result2.done) {
console.log(result2.value)
result2 = iterator2.next()
}
}
Approach that purely uses Iterators, similar to the Java Iterator example
const shorter = _items1.length > _items2.length ? _items2 : _items1;
const longer = _items1.length <= _items2.length ? _items2 : _items1;
shorter.map((m, i) => {
console.log(m);
console.log(longer[i]);
});
will limit each array to the length of the shortest array
IntStream.range(0, Math.max(items1.size(), items2.size()))
.boxed()
.flatMap(idx -> Stream.of(
items1.size() > idx ? items1.get(idx) : null,
items2.size() > idx ? items2.get(idx) : null
))
.filter(Objects::nonNull)
.forEach(System.out::println);
Get a stream of the list indices.
For each index, map to the elements from the lists at that index
Filter out null values which occur when the index is after the end of the list
Print the result
For each index, map to the elements from the lists at that index
Filter out null values which occur when the index is after the end of the list
Print the result
# php 5.3+
print array_reduce( array_map( null, $items1, $items2 ), function($c,$d){return $c.($c?"\n":'').implode("\n", $d); }, "")."\n" ;
#php 5.6+
print implode("\n", array_merge( ...array_map( null, $items1, $items2 )))."\n";
array_map will take one or more arrays, and will supply empty elements for shorter arrays
print for zip @items1, @items2;
print will warn about uninitialized value when lists have different size.
Wrap the statement in a block { } and include
no warnings "uninitialized";
to get rid of the warnings.
Wrap the statement in a block { } and include
no warnings "uninitialized";
to get rid of the warnings.
for pair in zip(item1, item2): print(pair)
This will print former min(len(item1), item(2)) pairs if len(item1) != len(item2).
print(*zip_longest(items1, items2))
"... If the iterables are of uneven length, missing values are filled-in with fillvalue. If not specified, fillvalue defaults to None."
a, b = len(items1), len(items2)
for i in range(max(a, b)):
if i < a: print(items1[i])
if i < b: print(items2[i])
items1.zip(items2){|pair| puts pair}
There will be as much pairs as there are items in items1. items2 will be "padded" with nils or trimmed as needed.
(map (lambda (x)
(display x)
(newline))
(foldr append '()
(map list items1 items2)))
items1 with: items2 do: [:item1 :item2 |
Transcript
showln: item1;
showln: item2].
If the collections have different size, this will raise an exception before the iteration starts.
stream1 := items1 readStream.
stream2 := items2 readStream.
[stream1 atEnd ifFalse: [Transcript showln: stream1 next].
stream2 atEnd ifFalse: [Transcript showln: stream2 next]]
doWhileFalse: [stream1 atEnd or: [stream2 atEnd]].