- Write a function that reverses a string. The input string is given as an array of characters s.
 - You must do this by modifying the input array in-place with O(1) extra memory.
 
Input: s = ["h","e","l","l","o"]
Output: ["o","l","l","e","h"]
Input: s = ["h","e","l","l","o"]
Output: ["o","l","l","e","h"]
Input: x = 2.00000, n = 10
Output: 1024.00000
Input: n = 3
Output: 0
Explanation: 3! = 6, no trailing zero.
Input: x = 121
Output: true
Explanation: 121 reads as 121 from left to right and from right to left.
Input: x = 123
Output: 321
In this post, we will look at how we can deploy our Django app using the Microsoft Azure app service - a free plan. You need an Azure accoun...