0

Want to do a project any ideas

4th Aug 2017, 1:16 PM
VINEETH V
VINEETH V - avatar
7 Respuestas
+ 6
Credit Card Validator - Takes in a credit card number from a common credit card vendor (Visa, MasterCard, American Express, Discoverer) and validates it to make sure that it is a valid number (look into how credit cards use a checksum).
4th Aug 2017, 2:18 PM
Kevin Henry
Kevin Henry - avatar
+ 4
calculator, to-do-list, tasks manager, tic tac toe(AI vs human), weather app, etc.
4th Aug 2017, 1:50 PM
Lord Krishna
Lord Krishna - avatar
+ 3
Fortune Teller (Horoscope) – A program that checks your horoscope on various astrology sites and puts them together for you each day.
4th Aug 2017, 3:33 PM
Kevin Henry
Kevin Henry - avatar
+ 2
sudoku, mastermind
4th Aug 2017, 1:52 PM
Daniel
Daniel - avatar
+ 1
n = gets.strip.chomp # Ruby: Card Validator (Luhn ISO/IEC 7812) _isin = n.reverse.upcase.chars.map{ |chr| id = [*?0..?9, *?A..?Z].rindex(chr); id > 9 ? [id / 10, id %10] : id }.flatten.map.with_index{ |elem, id| num = id.even? ? elem : elem * 2; num > 9 ? num - 9 : num }.reduce(:+) %10 == 0 # ⛑️bopoh13, Sep 27 2018
27th Sep 2018, 11:19 AM
𝕃𝕒𝕡𝕤𝕔𝕒𝕣
𝕃𝕒𝕡𝕤𝕔𝕒𝕣 - avatar
0
thanks
4th Aug 2017, 3:28 PM
VINEETH V
VINEETH V - avatar
0
any other suggestions?
4th Aug 2017, 3:28 PM
VINEETH V
VINEETH V - avatar