Travis build: 159

This commit is contained in:
30secondsofcode
2019-10-13 20:32:12 +00:00
parent 9888f1b462
commit 2cbe9adc97
3 changed files with 57 additions and 0 deletions

View File

@ -928,6 +928,21 @@
"hash": "c3008a44f2eb31adaca3e4f91c29a56a955e3105f9c187aa055fc55c35874b41"
}
},
{
"id": "reverse_string",
"type": "snippetListing",
"title": "reverse_string",
"attributes": {
"text": "Returns the reverse of a string.\n\nUse string slicing to reverse the string.\n\n",
"tags": [
"string",
"beginner"
]
},
"meta": {
"hash": "530fb0bc1bfaf1b56910aee3137be644986727e2f15b7e7ac2010f8797d86258"
}
},
{
"id": "sample",
"type": "snippetListing",

View File

@ -1228,6 +1228,26 @@
"hash": "c3008a44f2eb31adaca3e4f91c29a56a955e3105f9c187aa055fc55c35874b41"
}
},
{
"id": "reverse_string",
"title": "reverse_string",
"type": "snippet",
"attributes": {
"fileName": "reverse_string.md",
"text": "Returns the reverse of a string.\n\nUse string slicing to reverse the string.\n\n",
"codeBlocks": {
"code": "def reverse_string(string):\n return string[::-1]",
"example": "reverse_string(\"snippet\") #\"teppins\""
},
"tags": [
"string",
"beginner"
]
},
"meta": {
"hash": "530fb0bc1bfaf1b56910aee3137be644986727e2f15b7e7ac2010f8797d86258"
}
},
{
"id": "sample",
"title": "sample",