6 kyu

Street Fighter 2 - Character Selection

3,255 of 11,963mmalkavian

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:

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

  1. 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.

  2. 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 :

Street Fighter 2 - selection theme

Arrays
Lists
Fundamentals
Graph Theory

Stats:

CreatedDec 15, 2016
PublishedDec 16, 2016
Warriors Trained31822
Total Skips9364
Total Code Submissions47642
Total Times Completed11963
Python Completions3255
JavaScript Completions4722
TypeScript Completions602
C# Completions675
Java Completions1900
Ruby Completions344
Swift Completions433
Clojure Completions66
Rust Completions187
Total Stars778
% of votes with a positive feedback rating93% of 1715
Total "Very Satisfied" Votes1506
Total "Somewhat Satisfied" Votes183
Total "Not Satisfied" Votes26
Total Rank Assessments10
Average Assessed Rank
6 kyu
Highest Assessed Rank
6 kyu
Lowest Assessed Rank
7 kyu
Ad
Contributors
  • mmalkavian Avatar
  • betegelse Avatar
  • TellowKrinkle Avatar
  • brunolm Avatar
  • imjasonmiller Avatar
  • kazk Avatar
  • user5036852 Avatar
  • Blind4Basics Avatar
  • henryhamon Avatar
  • hobovsky Avatar
  • user1326445 Avatar
Ad