This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ----------------------------------------------------- # | |
# Roel Castaño Moreno. # | |
# March 21, 2014. # | |
# Problem 1 for Icalia Labs. # | |
# ----------------------------------------------------- # | |
# Asks for user's input (sentence to be processed). | |
print "Please write a sentence: " | |
sentence = gets.chomp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ----------------------------------------------------- # | |
# Roel Castaño Moreno. # | |
# March 21, 2014. # | |
# Problem 2 for Icalia Labs. # | |
# ----------------------------------------------------- # | |
# Function that reverses the string "str" | |
def reverse_words(str) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ILAppDelegate.m | |
// | |
// Created by Adrian Gzz on 25/09/13. | |
// | |
... | |
#import "ILMappingManager.h" | |
... |