Street Fighter 2 - Character Selection
Description:
Short Intro
Some of you might remember spending afternoons playing Street Fighter 2 in some Arcade back in the 90s or emulating it nowadays with the numerous emulators for retro consoles.
Can you solve this kata? Suuure-You-Can!
UPDATE: a new kata's harder version is available here.
The Kata
You'll have to simulate the video game's character selection screen behaviour, more specifically the selection grid. Such screen looks like this:
Screen:
Selection Grid Layout in text:
| Ryu | E.Honda | Blanka | Guile | Balrog | Vega |
| Ken | Chun Li | Zangief | Dhalsim | Sagat | M.Bison |
Input
- the list of game characters in a 2x6 grid;
- the initial position of the selection cursor (top-left is
(0,0)
); - a list of moves of the selection cursor (which are
up
,down
,left
,right
);
Output
- the list of characters who have been hovered by the selection cursor after all the moves (ordered and with repetition, all the ones after a move, whether successful or not, see tests);
Rules
Selection cursor is circular horizontally but not vertically!
As you might remember from the game, the selection cursor rotates horizontally but not vertically; that means that if I'm in the leftmost and I try to go left again I'll get to the rightmost (examples: from Ryu to Vega, from Ken to M.Bison) and vice versa from rightmost to leftmost.
Instead, if I try to go further up from the upmost or further down from the downmost, I'll just stay where I am located (examples: you can't go lower than lowest row: Ken, Chun Li, Zangief, Dhalsim, Sagat and M.Bison in the above image; you can't go upper than highest row: Ryu, E.Honda, Blanka, Guile, Balrog and Vega in the above image).
Test
For this easy version the fighters grid layout and the initial position will always be the same in all tests, only the list of moves change.
Notice: changing some of the input data might not help you.
Examples
fighters = [ ["Ryu", "E.Honda", "Blanka", "Guile", "Balrog", "Vega"], ["Ken", "Chun Li", "Zangief", "Dhalsim", "Sagat", "M.Bison"] ] initial_position = (0,0) moves = ['up', 'left', 'right', 'left', 'left']
then I should get:
['Ryu', 'Vega', 'Ryu', 'Vega', 'Balrog']
as the characters I've been hovering with the selection cursor during my moves. Notice: Ryu is the first just because it "fails" the first
up
See test cases for more examples.fighters = [ ["Ryu", "E.Honda", "Blanka", "Guile", "Balrog", "Vega"], ["Ken", "Chun Li", "Zangief", "Dhalsim", "Sagat", "M.Bison"] ] initial_position = (0,0) moves = ['right', 'down', 'left', 'left', 'left', 'left', 'right']
Result:
['E.Honda', 'Chun Li', 'Ken', 'M.Bison', 'Sagat', 'Dhalsim', 'Sagat']
OFF-TOPIC
Some music to get in the mood for this kata :
Similar Kata:
Stats:
Created | Dec 15, 2016 |
Published | Dec 16, 2016 |
Warriors Trained | 31822 |
Total Skips | 9364 |
Total Code Submissions | 47642 |
Total Times Completed | 11963 |
Python Completions | 3255 |
JavaScript Completions | 4722 |
TypeScript Completions | 602 |
C# Completions | 675 |
Java Completions | 1900 |
Ruby Completions | 344 |
Swift Completions | 433 |
Clojure Completions | 66 |
Rust Completions | 187 |
Total Stars | 778 |
% of votes with a positive feedback rating | 93% of 1715 |
Total "Very Satisfied" Votes | 1506 |
Total "Somewhat Satisfied" Votes | 183 |
Total "Not Satisfied" Votes | 26 |
Total Rank Assessments | 10 |
Average Assessed Rank | 6 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 7 kyu |