ПочатиПочніть безкоштовно

Array merging

In some situations, you might have multiple arrays and want to combine them together into one large array.

In this example, we have two arrays of stock tickers, stocks_yesterday and stocks_today. The first array contains stock tickers we traded yesterday, and the second array contains stock tickers that we traded today. We want to create a master array, with all tickers combined.

Remember that to merge two arrays, we use the semicolon operator ;, just as we do when creating a multi-dimensional array.

Ця вправа є частиною курсу

Intermediate Julia

Переглянути курс

Інструкції до вправи

  • Merge stocks_yesterday and stocks_today and store the result in stocks_master.

Інтерактивна практична вправа

Спробуйте виконати цю вправу, доповнивши цей зразок коду.

# Create the arrays stocks_yesterday and stocks_today
stocks_yesterday = ["AAPL" "MSFT";"TSLA" "MSFT"]
stocks_today = ["V" "AAPL";"GOOG" "AMZN"]

# Concatenate the stocks_yesterday and stocks_today arrays
stocks_master = ____
Редагувати та запускати код