8 kyu
They say that only the name is long enough to attract attention. They also said that only a simple Kata will have someone to solve it. This is a sadly story #1: Are they opposite?
3,993 of 11,171myjinxin2015
Description:
Task
Give you two strings: s1
and s2
. If they are opposite, return true
; otherwise, return false
. Note: The result should be a boolean value, instead of a string.
The opposite
means: All letters of the two strings are the same, but the case is opposite. you can assume that the string only contains letters or it's a empty string. Also take note of the edge case - if both strings are empty then you should return false
/False
.
Examples (input -> output)
"ab","AB" -> true
"aB","Ab" -> true
"aBcd","AbCD" -> true
"AB","Ab" -> false
"","" -> false
Puzzles
Games
Similar Kata:
Stats:
Created | May 29, 2016 |
Published | May 29, 2016 |
Warriors Trained | 19441 |
Total Skips | 384 |
Total Code Submissions | 49457 |
Total Times Completed | 11171 |
JavaScript Completions | 3993 |
CoffeeScript Completions | 22 |
Ruby Completions | 577 |
Python Completions | 4820 |
Haskell Completions | 244 |
C# Completions | 722 |
C Completions | 352 |
PureScript Completions | 7 |
C++ Completions | 722 |
Scala Completions | 18 |
Total Stars | 207 |
% of votes with a positive feedback rating | 89% of 1599 |
Total "Very Satisfied" Votes | 1294 |
Total "Somewhat Satisfied" Votes | 253 |
Total "Not Satisfied" Votes | 52 |