id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

tmhscs@gmail.com arrays > array_createTrueArray
prev  |  next  |  chance

Given an integer "n", create and return a boolean array that is size "n", but that stores all values of true.


array_createTrueArray(0) → []
array_createTrueArray(1) → [true]
array_createTrueArray(2) → [true, true]

...Save, Compile, Run (ctrl-enter)

public boolean[] array_createTrueArray(int n) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Post-solution available

Copyright Nick Parlante 2017 - privacy