Files
.github
api-server
client
config
curriculum
__fixtures__
challenges
_meta
chinese
01-responsive-web-design
02-javascript-algorithms-and-data-structures
03-front-end-libraries
04-data-visualization
05-apis-and-microservices
06-quality-assurance
07-scientific-computing-with-python
08-data-analysis-with-python
data-analysis-with-python-course
data-analysis-with-python-projects
numpy
accessing-and-changing-elements,-rows,-columns.md
basics-of-numpy.md
copying-arrays-warning.md
initialize-array-problem.md
initializing-different-arrays.md
loading-data-and-advanced-indexing.md
mathematics.md
reorganizing-arrays.md
what-is-numpy.md
09-information-security
10-coding-interview-prep
11-machine-learning-with-python
12-certificates
english
schema
test
.babelrc
LICENSE.md
comment-dictionary.js
create-challenge-bundle.js
getChallenges.acceptance.test.js
getChallenges.js
getChallenges.test.js
gulpfile.js
lib.js
package-entry.js
package-lock.json
package.json
utils.js
cypress
docs
tools
utils
.editorconfig
.eslintignore
.eslintrc.json
.gitattributes
.gitignore
.gitpod.yml
.node-inspectorrc
.npmrc
.prettierignore
.prettierrc
.snyk
.vcmrc
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Dockerfile.tests
HoF.md
LICENSE.md
README.md
SECURITY.md
change_volumes_owner.sh
crowdin.yml
cypress-install.js
cypress.json
docker-compose-shared.yml
docker-compose.tests.yml
docker-compose.yml
jest.config.js
lerna.json
lighthouserc.js
package-lock.json
package.json
sample.env
2020-09-29 22:09:05 +02:00

620 B

id, title, challengeType, isHidden, videoId
id title challengeType isHidden videoId
5e9a0a8e09c5df3cc3600ed3 Basics of Numpy 11 false f9QrZrKQMLI

Description

Tests

question:
  text: |
    What will the following code print?

    ```python
    b = np.array([[1.0,2.0,3.0],[3.0,4.0,5.0]])
    print(b)
    ```
  answers:
    - |
      ```python
      [[1.0 2.0 3.0]
      [3.0 4.0 5.0]]
      ```
    - |
      ```python
      [[1. 2. 3.]
      [3. 4. 5.]]
      ```
    - |
      ```python
      [[1. 3.]
      [2. 4.]
      [3. 5.]
      ```
  solution: 2