Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Challenges

Comments on Shape of an array

Post

Shape of an array

+6
−0

Given a non-ragged array (an array where all sub-arrays at a particular level have the same length) of non-negative integers, answer its shape, that is, the length along every dimension. You may assume that the given array has at least one empty dimension, and that only the trailing dimension can have length 0.

Test cases

[][0]

[0][1]

[[]][1,0]

[[],[]][2,0]

[[4,4],[0,3]][2,2]

[[[4],[6]]][1,2,1]

[[[[7],[0]]]][1,1,2,1]

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

General comments (5 comments)
General comments
Razetime‭ wrote over 3 years ago

Do we get bonus points for not using here?

dzaima‭ wrote over 3 years ago · edited over 3 years ago

What can the non-array contents of the arrays be - only numbers, or any arbitrary non-array object?

Adám‭ wrote over 3 years ago

@Razetime‭ No. :-)

Adám‭ wrote over 3 years ago

@dzaima Updated.

Moshi‭ wrote over 3 years ago

Is there an order we have to output in? (my solution outputs the dimensions in the reverse order of your test cases)