MCPcopy Create free account
hub / github.com/careercup/ctci / revStr

Function revStr

python/Chapter 1/Question1_2/revstr.py:1–2  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

1def revStr(s):
2 return s[::-1]
3
4if __name__ == '__main__':
5 words = ('mary', 'anna', 'peter')

Callers 7

testEmptyMethod · 0.85
testSingleMethod · 0.85
testDoubleEqMethod · 0.85
testDoubleDiffMethod · 0.85
testValidMethod · 0.85
testInvalidMethod · 0.85
revstr.pyFile · 0.85

Calls

no outgoing calls

Tested by 6

testEmptyMethod · 0.68
testSingleMethod · 0.68
testDoubleEqMethod · 0.68
testDoubleDiffMethod · 0.68
testValidMethod · 0.68
testInvalidMethod · 0.68