6 kyu

It's Raining Tacos

Description:

It's Raining Tacos!

A line of tacos is falling out of the sky onto the landscape.

Your task is to predict what the landscape will look like when the tacos fall on it.

                   
INPUT:             
           *********
                   
OUTPUT:    TACOTACOT
           *********

The landscape is represented as any ASCII character, with the air being represented as whitespaces. The rows are separated by newline characters.

Tacos fall from left to right, distributing the word TACO repeadetly over the landscape. Each letter falls on the topmost part of the landscape in that area.

If there are no characters in that location, the taco falls all the way to the bottom.

                   
INPUT:       *  ** 
           *** **** 
             C  AC 
OUTPUT:    TA* T**O
           ***O****T

If there is no space for tacos to fall, then that space is skipped. The next letter still continues forward in the TACO sequence.

           **      
INPUT:     ****    
           ******   
           **CO    
OUTPUT:    ****TA  
           ******COT

Tacos cannot fall through solid material. If there is a floating island, TACO should be placed on the island, not below it.

                   
INPUT:      *****  
                    
            COTAC 
OUTPUT:     ***** 
          TA     OT

The width and height of the landscape can be anywhere from 1 to 100.

In the case of an empty string, return an empty string.

Good Luck!

Algorithms

More By Author:

Check out these other kata created by johnbutlergames

Stats:

CreatedSep 3, 2023
PublishedSep 4, 2023
Warriors Trained998
Total Skips22
Total Code Submissions1916
Total Times Completed187
JavaScript Completions96
Rust Completions32
Java Completions35
Python Completions44
Total Stars24
% of votes with a positive feedback rating83% of 51
Total "Very Satisfied" Votes38
Total "Somewhat Satisfied" Votes9
Total "Not Satisfied" Votes4
Total Rank Assessments11
Average Assessed Rank
6 kyu
Highest Assessed Rank
5 kyu
Lowest Assessed Rank
7 kyu
Ad
Contributors
  • johnbutlergames Avatar
  • Blind4Basics Avatar
  • akar-0 Avatar
  • QKiryu Avatar
  • TheLittlePixiesFriend Avatar
Ad