Given a input vector x, return y as index-powered vector as shown below.

Example

 x = [2 3 6 9]

then y should be

 [2^1 3^2 6^3 9^4] = [2 9 216 6561]

Solution Stats

1482 Solutions

939 Solvers

Last Solution submitted on Mar 02, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...